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:
parent
f9b0f81d63
commit
be7e835d92
2 changed files with 6 additions and 6 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue