From fa884d356d1e22a1f53efb306f3ceddee43fb574 Mon Sep 17 00:00:00 2001 From: olsner Date: Mon, 29 Mar 2004 13:23:25 +0000 Subject: [PATCH] Changed keys[] size from 256 to SDLK_LAST (SDL has keycodes over 255) This was SVN commit r192. --- source/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/main.cpp b/source/main.cpp index 7c0eb81273..e289fb1492 100755 --- a/source/main.cpp +++ b/source/main.cpp @@ -22,7 +22,7 @@ u32 game_ticks; -bool keys[256]; +bool keys[SDLK_LAST]; #include