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