Update of /cvsroot/opentnl/tnl/zap
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11419/zap
Modified Files:
game.h item.cpp
Log Message:
Fixed respawning item bug
Updated game version
Index: item.cpp
===================================================================
RCS file: /cvsroot/opentnl/tnl/zap/item.cpp,v
retrieving revision 1.21
retrieving revision 1.22
diff -C2 -d -r1.21 -r1.22
*** item.cpp 5 Oct 2004 00:16:34 -0000 1.21
--- item.cpp 8 Oct 2004 21:19:29 -0000 1.22
***************
*** 267,271 ****
--- 267,274 ----
{
if(mRepopTimer.update(mCurrentMove.time))
+ {
+ setMaskBits(PickupMask);
mIsVisible = true;
+ }
}
updateExtent();
Index: game.h
===================================================================
RCS file: /cvsroot/opentnl/tnl/zap/game.h,v
retrieving revision 1.69
retrieving revision 1.70
diff -C2 -d -r1.69 -r1.70
*** game.h 8 Oct 2004 00:17:47 -0000 1.69
--- game.h 8 Oct 2004 21:19:28 -0000 1.70
***************
*** 236,240 ****
extern void endGame();
! #define ZAP_GAME_STRING "ZAP 1.4.7"
};
--- 236,240 ----
extern void endGame();
! #define ZAP_GAME_STRING "ZAP 1.4.8"
};
|