1
0
mirror of https://github.com/OpenTTD/OpenTTD.git synced 2025-08-26 16:09:10 +00:00

(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)
This commit is contained in:
bjarni
2006-08-07 16:56:00 +00:00
parent adcaf779c4
commit b62f4ed9d2

View File

@@ -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;