mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
The Tournament Mode cheat is now "chaos zero 64". Thanks to the OG!
In addition, make it case insensitive
This commit is contained in:
parent
7604235c00
commit
909eb7b6ef
1 changed files with 2 additions and 2 deletions
|
|
@ -167,7 +167,7 @@ static UINT8 cheatf_devmode(void)
|
|||
|
||||
static cheatseq_t cheat_warp = {
|
||||
NULL, cheatf_warp,
|
||||
(UINT8[]){ SCRAMBLE('p'), SCRAMBLE('l'), SCRAMBLE('a'), SCRAMBLE('c'), SCRAMBLE('e'), SCRAMBLE('h'), SCRAMBLE('o'), SCRAMBLE('l'), SCRAMBLE('d'), SCRAMBLE('e'), SCRAMBLE('r'), 0xff }
|
||||
(UINT8[]){ SCRAMBLE('c'), SCRAMBLE('h'), SCRAMBLE('a'), SCRAMBLE('o'), SCRAMBLE('s'), SCRAMBLE(' '), SCRAMBLE('z'), SCRAMBLE('e'), SCRAMBLE('r'), SCRAMBLE('o'), SCRAMBLE(' '), SCRAMBLE('6'), SCRAMBLE('4'), 0xff }
|
||||
};
|
||||
|
||||
static cheatseq_t cheat_wrongwarp = {
|
||||
|
|
@ -263,7 +263,7 @@ boolean cht_Interpret(const char *password)
|
|||
cheatseqid = 0;
|
||||
while (cheatseqlist[cheatseqid])
|
||||
{
|
||||
ret += cht_CheckCheat(cheatseqlist[cheatseqid], *password, (password == endofpassword));
|
||||
ret += cht_CheckCheat(cheatseqlist[cheatseqid], tolower(*password), (password == endofpassword));
|
||||
cheatseqid++;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue