forked from jaildesigner-jailgames/jaildoctors_dilemma
Ya es posible desplazarse de forma prematura por la lista de logros
This commit is contained in:
@@ -1220,18 +1220,25 @@ void Director::initInput()
|
||||
input->bindKey(input_jump, SDL_SCANCODE_UP);
|
||||
input->bindKey(input_left, SDL_SCANCODE_LEFT);
|
||||
input->bindKey(input_right, SDL_SCANCODE_RIGHT);
|
||||
input->bindKey(input_up, SDL_SCANCODE_UP);
|
||||
input->bindKey(input_down, SDL_SCANCODE_DOWN);
|
||||
|
||||
}
|
||||
else if (options->keys == ctrl_opqa)
|
||||
{
|
||||
input->bindKey(input_jump, SDL_SCANCODE_Q);
|
||||
input->bindKey(input_left, SDL_SCANCODE_O);
|
||||
input->bindKey(input_right, SDL_SCANCODE_P);
|
||||
input->bindKey(input_up, SDL_SCANCODE_Q);
|
||||
input->bindKey(input_down, SDL_SCANCODE_A);
|
||||
}
|
||||
else if (options->keys == ctrl_wasd)
|
||||
{
|
||||
input->bindKey(input_jump, SDL_SCANCODE_W);
|
||||
input->bindKey(input_left, SDL_SCANCODE_A);
|
||||
input->bindKey(input_right, SDL_SCANCODE_D);
|
||||
input->bindKey(input_up, SDL_SCANCODE_W);
|
||||
input->bindKey(input_down, SDL_SCANCODE_S);
|
||||
}
|
||||
|
||||
// Teclado - Otros
|
||||
|
||||
Reference in New Issue
Block a user