# HG changeset patch # User bjarni # Date 1154969760 0 # Node ID d10d168c4d483606d4dfcfc6f8d6aa147fdf3601 # Parent 1bc9b3024d0dfab05c22cb62c73acc717ed7f620 (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) diff -r 1bc9b3024d0d -r d10d168c4d48 variables.h --- a/variables.h Mon Aug 07 11:31:27 2006 +0000 +++ b/variables.h Mon Aug 07 16:56:00 2006 +0000 @@ -215,8 +215,8 @@ 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;