aboutsummaryrefslogtreecommitdiff
path: root/sky/text.h
diff options
context:
space:
mode:
authorRobert Göffringmann2003-05-12 20:50:59 +0000
committerRobert Göffringmann2003-05-12 20:50:59 +0000
commit7848ce64ea3af438bb7254b5e4a768fa8fdf93e0 (patch)
treeb0d0f724cb0ff3d03d1bba4c6d093a52531ed201 /sky/text.h
parent3f798a92b6b94d0b3304d69e1a101540cab5cfe1 (diff)
downloadscummvm-rg350-7848ce64ea3af438bb7254b5e4a768fa8fdf93e0.tar.gz
scummvm-rg350-7848ce64ea3af438bb7254b5e4a768fa8fdf93e0.tar.bz2
scummvm-rg350-7848ce64ea3af438bb7254b5e4a768fa8fdf93e0.zip
m$vc++ gave hundreds of constant-truncation-warnings because of this one...
svn-id: r7477
Diffstat (limited to 'sky/text.h')
-rw-r--r--sky/text.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sky/text.h b/sky/text.h
index 7814581c46..6f58667e33 100644
--- a/sky/text.h
+++ b/sky/text.h
@@ -25,8 +25,8 @@
#include "sky/disk.h"
struct HuffTree {
- char lChild;
- char rChild;
+ unsigned char lChild;
+ unsigned char rChild;
char value;
};