From b62f4ed9d251c842b29658d3e857542f65170450 Mon Sep 17 00:00:00 2001 From: bjarni Date: Mon, 7 Aug 2006 16:56:00 +0000 Subject: (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(-) (limited to 'variables.h') diff --git a/variables.h b/variables.h index 4cb875beb..e67b96573 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; -- cgit v1.2.3-54-g00ecf