(svn r5805) -Fix: FS#189 Boolean cheats do not work
authorbjarni
Mon, 07 Aug 2006 16:56:00 +0000
changeset 4237 7097574bc219
parent 4236 8f21cc1d7095
child 4238 4b58d6ea4e5b
(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)
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;