aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Gilbert2012-02-24 21:04:42 +1100
committerStrangerke2012-04-06 08:21:54 +0200
commit59eacf43c1f3b9e5fec35abed41125f78df2bf80 (patch)
tree06cad5b201ce3f656647a284400e1592611515e7
parent9efa50c6e418bf707648b056230f1a2d22b3eacb (diff)
downloadscummvm-rg350-59eacf43c1f3b9e5fec35abed41125f78df2bf80.tar.gz
scummvm-rg350-59eacf43c1f3b9e5fec35abed41125f78df2bf80.tar.bz2
scummvm-rg350-59eacf43c1f3b9e5fec35abed41125f78df2bf80.zip
MORTEVIELLE: Changed some char fields in sav_chaine to byte
This fixes a problem with inventory display, because the original Pascal type was unsigned, whereas char is cigned
-rw-r--r--engines/mortevielle/var_mor.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/mortevielle/var_mor.h b/engines/mortevielle/var_mor.h
index bc63aa98d3..5bbc8bdb36 100644
--- a/engines/mortevielle/var_mor.h
+++ b/engines/mortevielle/var_mor.h
@@ -161,9 +161,9 @@ extern const byte rang[16];
struct sav_chaine {
int conf;
- char pourc[11];
- char teauto[43];
- char sjer[31];
+ byte pourc[11];
+ byte teauto[43];
+ byte sjer[31];
int mlieu, iboul, ibag, icave, ivier, ipuit;
int derobj, iloic, icryp;
bool ipre;