Store cheat strings inline

This commit is contained in:
Kp 2013-10-05 21:05:09 +00:00
parent 53714438ca
commit 42893d8618

View file

@ -1366,7 +1366,7 @@ static int HandleTestKey(int key)
#define CHEAT_MAX_LEN 15
typedef struct cheat_code
{
const char *string;
const char string[CHEAT_MAX_LEN];
int *stateptr;
} __pack__ cheat_code;