fixed gcc build warnings

This commit is contained in:
Robert 2021-10-31 00:19:48 +02:00
parent e4c68c8b17
commit 29643e060b
2 changed files with 3 additions and 2 deletions

3
.gitignore vendored
View file

@ -1,3 +1,4 @@
.vs/
out/
*.json
build/
*.json

View file

@ -15,7 +15,7 @@ Byte pollInput(struct Controller* controller)
void fillRegister(struct Controller* controller)
{
Byte* keyboard = SDL_GetKeyboardState(NULL);
const Byte* keyboard = SDL_GetKeyboardState(NULL);
controller->data.A = keyboard[SDL_SCANCODE_A];
controller->data.B = keyboard[SDL_SCANCODE_S];