# HG changeset patch # User bjarni # Date 1154969760 0 # Node ID 7097574bc2198d82821a00671b5d25a0ce549a88 # Parent 8f21cc1d70956adeeb304fda1f26239d0a398577 (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 8f21cc1d7095 -r 7097574bc219 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;