Fix player movement

This commit is contained in:
Mathias Wagner 2024-11-25 12:18:12 +01:00
parent 77c0428112
commit 83dd6bddcc

View File

@ -156,6 +156,7 @@ void Game::run() {
keys[2] = isPressed; keys[2] = isPressed;
break; break;
case SDLK_d: case SDLK_d:
keys[3] = isPressed;
break; break;
} }
} }