fixed gcc build warnings
This commit is contained in:
parent
e4c68c8b17
commit
29643e060b
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
.vs/
|
.vs/
|
||||||
out/
|
out/
|
||||||
*.json
|
build/
|
||||||
|
*.json
|
||||||
|
|
|
@ -15,7 +15,7 @@ Byte pollInput(struct Controller* controller)
|
||||||
|
|
||||||
void fillRegister(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.A = keyboard[SDL_SCANCODE_A];
|
||||||
controller->data.B = keyboard[SDL_SCANCODE_S];
|
controller->data.B = keyboard[SDL_SCANCODE_S];
|
||||||
|
|
Loading…
Reference in a new issue