Update of /cvsroot/wpdev/wolfpack/muls
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15956/muls
Modified Files:
maps.cpp maps.h
Log Message:
teleporter fixes
added color for static tiles
Index: maps.cpp
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/muls/maps.cpp,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** maps.cpp 25 Sep 2004 21:15:46 -0000 1.14
--- maps.cpp 1 Oct 2004 19:43:56 -0000 1.15
***************
*** 731,736 ****
staticStream >> r.yoff;
staticStream >> r.zoff;
! Q_UINT16 unknown;
! staticStream >> unknown;
if ( exact )
{
--- 731,735 ----
staticStream >> r.yoff;
staticStream >> r.zoff;
! staticStream >> r.color;
if ( exact )
{
Index: maps.h
===================================================================
RCS file: /cvsroot/wpdev/wolfpack/muls/maps.h,v
retrieving revision 1.4
retrieving revision 1.5
diff -C2 -d -r1.4 -r1.5
*** maps.h 16 Sep 2004 01:40:17 -0000 1.4
--- maps.h 1 Oct 2004 19:43:56 -0000 1.5
***************
*** 57,60 ****
--- 57,61 ----
Q_UINT8 yoff;
Q_INT8 zoff;
+ Q_UINT16 color;
};
#pragma pack()
|