mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-13 07:58:04 +00:00
parent
ca66e70d65
commit
55de06ab2f
1 changed files with 5 additions and 5 deletions
|
@ -100,7 +100,7 @@ bool MapCheat(cheatseq_t* c)
|
||||||
if (!(pp=checkCheat(c))) return false;
|
if (!(pp=checkCheat(c))) return false;
|
||||||
mapcheat = !mapcheat;
|
mapcheat = !mapcheat;
|
||||||
// Need to do this differently. The code here was completely broken.
|
// Need to do this differently. The code here was completely broken.
|
||||||
PutStringInfo(pp, GStrings(mapcheat ? "TXT_AMON" : "TXT_AMOFF"));
|
PutStringInfo(pp, GStrings(mapcheat ? "TXTS_AMON" : "TXTS_AMOFF"));
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -355,7 +355,7 @@ bool KeyCheat(cheatseq_t* c)
|
||||||
PLAYERp p;
|
PLAYERp p;
|
||||||
short pnum;
|
short pnum;
|
||||||
const char *cp = (char*)c->Args;
|
const char *cp = (char*)c->Args;
|
||||||
const char *str = "TXT_GIVEKEY";
|
const char *str = "TXTS_GIVEKEY";
|
||||||
int keynum = 0;
|
int keynum = 0;
|
||||||
|
|
||||||
keynum = atol(cp);
|
keynum = atol(cp);
|
||||||
|
@ -368,12 +368,12 @@ bool KeyCheat(cheatseq_t* c)
|
||||||
if (p->HasKey[keynum-1] == FALSE)
|
if (p->HasKey[keynum-1] == FALSE)
|
||||||
{
|
{
|
||||||
p->HasKey[keynum-1] = TRUE; // cards: 0=red 1=blue 2=green 3=yellow | keys: 4=gold 5=silver 6=bronze 7=red
|
p->HasKey[keynum-1] = TRUE; // cards: 0=red 1=blue 2=green 3=yellow | keys: 4=gold 5=silver 6=bronze 7=red
|
||||||
str = "TXT_KEYGIVEN";
|
str = "TXTS_KEYGIVEN";
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
p->HasKey[keynum-1] = FALSE;
|
p->HasKey[keynum-1] = FALSE;
|
||||||
str = "TXT_KEYREMOVED";
|
str = "TXTS_KEYREMOVED";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -388,7 +388,7 @@ bool KeysCheat(cheatseq_t* c)
|
||||||
// Get KEYS
|
// Get KEYS
|
||||||
PLAYERp p;
|
PLAYERp p;
|
||||||
short pnum;
|
short pnum;
|
||||||
const char* str = "TXT_GIVEKEY";
|
const char* str = "TXTS_GIVEKEY";
|
||||||
int keynum = 0;
|
int keynum = 0;
|
||||||
|
|
||||||
TRAVERSE_CONNECT(pnum)
|
TRAVERSE_CONNECT(pnum)
|
||||||
|
|
Loading…
Reference in a new issue