Changed keys[] size from 256 to SDLK_LAST (SDL has keycodes over 255)

This was SVN commit r192.
This commit is contained in:
Simon Brenner 2004-03-29 13:23:25 +00:00
parent 6a3b74b966
commit fa884d356d

View File

@ -22,7 +22,7 @@
u32 game_ticks;
bool keys[256];
bool keys[SDLK_LAST];
#include <cmath>