mirror of https://github.com/OpenTTD/OpenTTD
(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)release/0.5
parent
adcaf779c4
commit
b62f4ed9d2
|
@ -216,7 +216,7 @@ VARDEF Patches _patches;
|
||||||
|
|
||||||
typedef struct Cheat {
|
typedef struct Cheat {
|
||||||
bool been_used; // has this cheat been used before?
|
bool been_used; // has this cheat been used before?
|
||||||
byte value; // active?
|
bool value; // tells if the bool cheat is active or not
|
||||||
} Cheat;
|
} Cheat;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue