Update of /cvsroot/plib/plib/src/ssg
In directory sc8-pr-cvs1:/tmp/cvs-serv26429
Modified Files:
ssgLoadMDL.cxx
Log Message:
Fixing compile problem (on Linux?) reported by Melchior FRANZ. Thanks!
Index: ssgLoadMDL.cxx
===================================================================
RCS file: /cvsroot/plib/plib/src/ssg/ssgLoadMDL.cxx,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -d -r1.49 -r1.50
--- ssgLoadMDL.cxx 8 Dec 2003 08:22:12 -0000 1.49
+++ ssgLoadMDL.cxx 8 Dec 2003 18:07:04 -0000 1.50
@@ -1644,7 +1644,7 @@
//===========================================================================
#define MYMAKEFOURCC(a, b, c, d) \
- ((unsigned long)(a) | ((unsigned long)(BYTE)(b) << 8) | \
+ ((unsigned long)(a) | ((unsigned long)(b) << 8) | \
((unsigned long)(c) << 16) | ((unsigned long)(d) << 24 ))
static unsigned long l1 = MYMAKEFOURCC('R', 'I', 'F', 'F');
|