From 33697a9aef83787ba259d40a926cd4f892159f51 Mon Sep 17 00:00:00 2001 From: bjarni Date: Mon, 7 Aug 2006 16:56:00 +0000 Subject: [PATCH] (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 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/variables.h b/variables.h index 4cb875beba..e67b965737 100644 --- a/variables.h +++ b/variables.h @@ -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;