Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm doing a simple camera movement with the WASD keys:

switch (k) {
    case SDLK_w:
        this->up = true;
        break;
    case SDLK_s:
        this->down = true;
        break;
    case SDLK_a:
        this->left = true;
        break;
    case SDLK_d:
        this->right = true;
        break;
    default:
        break;
}

It's pretty self explanatory. But when I press w it simply doesn't detect that button pressing. If I press a or d or s it works. The cool thing about it is that if I just change SDLK_w to any other button (let's say SDLK_q) keeping the same exact code, it just works. It's not an issue of how I handle this->up because even if I print something on the screen inside the case SDLK_w: and I press w it doesn't print anything.

PS: obviously my w key is not broken otherwise I would have had trouble writing this post doWn.

What's wrong with w?

share|improve this question
What value does SDLK_w represent? – ctor Dec 1 '12 at 20:52
@Loggie, it represent 119 and it's the exact key code value for the Mac keyboard. I've just checked with a specific application. – Jeffrey Dec 1 '12 at 20:53
What happens if you cout the value of k in the default case and press the w key? – ctor Dec 1 '12 at 20:56
@Loggie, It prints 122, it's quite strange. – Jeffrey Dec 1 '12 at 20:57
1  
I don't know if this would affect it but out of curiosity, what is your keyboard region set to? – ctor Dec 1 '12 at 21:12
show 12 more comments

1 Answer

It could depend on the type of keyboard you are using, actually your W and Z key could be inversed depending on your keyboard layout. I recommand you try ALT+SHIFT.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.