[Teleus-cvs] teleus/src/game debug.cpp,1.10,1.11 game.cpp,1.16,1.17
Status: Inactive
Brought to you by:
spiffgq
|
From: <sp...@us...> - 2004-03-11 03:27:09
|
Update of /cvsroot/teleus/teleus/src/game In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv7479/src/game Modified Files: debug.cpp game.cpp Log Message: Minor comment changes. Index: debug.cpp =================================================================== RCS file: /cvsroot/teleus/teleus/src/game/debug.cpp,v retrieving revision 1.10 retrieving revision 1.11 diff -C2 -d -r1.10 -r1.11 *** debug.cpp 25 Feb 2004 06:21:27 -0000 1.10 --- debug.cpp 11 Mar 2004 03:08:42 -0000 1.11 *************** *** 124,129 **** * * \verbatim ! * TELEUS debug: filename: linenumber custom message ! * \endverbatim * * The caller should supply a newline at the end of the custom --- 124,129 ---- * * \verbatim ! TELEUS debug: filename: linenumber custom message ! \endverbatim * * The caller should supply a newline at the end of the custom Index: game.cpp =================================================================== RCS file: /cvsroot/teleus/teleus/src/game/game.cpp,v retrieving revision 1.16 retrieving revision 1.17 diff -C2 -d -r1.16 -r1.17 *** game.cpp 25 Feb 2004 06:34:02 -0000 1.16 --- game.cpp 11 Mar 2004 03:08:42 -0000 1.17 *************** *** 453,456 **** --- 453,457 ---- DEBUG_PRINT ("Generating random cubes\n"); for (uint i = 0; i < NUM_CUBES; ++i){ + //DEBUG_PRINT ("\t Generating cube %d\n", i); cubes[i] = obj::Cube::getRandomCube(); } *************** *** 594,599 **** a sub-namespace called <tt>inscript</tt>. These functions are very recognizable because they all have the same prototype: ! <tt>int teleus::inscript::luaT_<i>functionname</i> (lua_State ! *luaVM)</tt>. The <tt><i>functionname</i></tt> part of the function's name is --- 595,600 ---- a sub-namespace called <tt>inscript</tt>. These functions are very recognizable because they all have the same prototype: ! <tt>int teleus::inscript::luaT_functionname (lua_State *luaVM) ! </tt>. The <tt><i>functionname</i></tt> part of the function's name is *************** *** 672,676 **** contain mathematical geometry classes (these classes are not intended to be rendered directly). The <tt>math/matrix.?pp</tt> ! and <tt>math/vector.?pp> files contain typical matrix and vector classes. --- 673,677 ---- contain mathematical geometry classes (these classes are not intended to be rendered directly). The <tt>math/matrix.?pp</tt> ! and <tt>math/vector.?pp</tt> files contain typical matrix and vector classes. |