Fix cheat

This commit is contained in:
Miloslav Číž 2020-11-16 20:01:09 +01:00
parent 11531db82d
commit ca664f3192
1 changed files with 2 additions and 6 deletions

6
game.h
View File

@ -3738,11 +3738,6 @@ void SFG_handleCheats()
uint8_t expectedKey;
//012345678910
//abracadabra
//
//a5 b2 r2 c1 d1
switch (SFG_game.cheatState & 0x0f)
{
case 0: case 3: case 5: case 7: case 10:
@ -3785,6 +3780,7 @@ void SFG_handleCheats()
SFG_player.ammo[SFG_AMMO_ROCKETS] = SFG_AMMO_MAX_ROCKETS;
SFG_player.ammo[SFG_AMMO_PLASMA] = SFG_AMMO_MAX_PLASMA;
SFG_player.weapon = SFG_WEAPON_SOLUTION;
SFG_player.cards |= 0x07;
SFG_game.cheatState = 0x80;
}
}