INCREASE maximum number of GBA cheats to 1000 (was 100)

This commit is contained in:
spacy51 2008-01-18 19:33:05 +00:00
parent 80e1736fa7
commit 4715a2a391
2 changed files with 3 additions and 3 deletions

View File

@ -196,7 +196,7 @@
#define CHEATS_16_BIT_WRITE 114
#define CHEATS_32_BIT_WRITE 115
CheatsData cheatsList[100];
CheatsData cheatsList[1000];
int cheatsNumber = 0;
u32 rompatch2addr [4];
u16 rompatch2val [4];
@ -1332,7 +1332,7 @@ void cheatsAdd(const char *codeStr,
int code,
int size)
{
if(cheatsNumber < 100) {
if(cheatsNumber < 1000) {
int x = cheatsNumber;
cheatsList[x].code = code;
cheatsList[x].size = size;

View File

@ -51,5 +51,5 @@ extern void cheatsWriteHalfWord(u32, u16);
extern void cheatsWriteByte(u32, u8);
extern int cheatsCheckKeys(u32,u32);
extern int cheatsNumber;
extern CheatsData cheatsList[100];
extern CheatsData cheatsList[1000];
#endif // GBA_CHEATS_H