(svn r5805) -Fix: FS#189 Boolean cheats do not work

This turned out to be an endian issue affecting all big endian computers (Vernon aka ploppy)
pull/155/head
bjarni 18 years ago
parent 597f64f07d
commit 33697a9aef

@ -215,8 +215,8 @@ VARDEF Patches _patches;
typedef struct Cheat {
bool been_used; // has this cheat been used before?
byte value; // active?
bool been_used; // has this cheat been used before?
bool value; // tells if the bool cheat is active or not
} Cheat;

Loading…
Cancel
Save