1
0
Fork 0
forked from len0rd/rockbox

use int instead of enum.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26916 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Teruaki Kawashima 2010-06-18 13:33:22 +00:00
parent f9b0f81d63
commit be7e835d92
2 changed files with 6 additions and 6 deletions

View file

@ -238,7 +238,8 @@ struct settings {
struct resources humanres;
struct resources compres;
enum { GS_PROD, GS_MOVE, GS_WAR } gamestate;
enum { GS_PROD, GS_MOVE, GS_WAR };
int gamestate;
struct cursor{
int x;