Changeset 3204 in orxonox.OLD for orxonox/trunk
- Timestamp:
- Dec 17, 2004, 5:39:03 PM (20 years ago)
- Location:
- orxonox/trunk/src
- Files:
-
- 1 added
- 1 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/importer/framework.cc
r3201 r3204 15 15 16 16 #include "framework.h" 17 #define PRINTF(x) \18 if (verbose = x ) \19 printf ("%s:%d:", __FILE__, __LINE__); printf20 21 17 22 18 void DrawGLScene() … … 55 51 int main(int argc, char *argv[]) 56 52 { 53 int verbose = 2; 57 54 58 55 PRINTF(1)("This is The big verbose-Test %i, %s\n", 1, "cool"); 59 56 60 int verbose = 2;61 57 Uint8* keys; // This variable will be used in the keyboard routine 62 58 int done=FALSE; // We aren't done yet, are we? -
orxonox/trunk/src/orxonox.h
r3022 r3204 6 6 #ifndef ORXONOX_H 7 7 #define ORXONOX_H 8 9 // this includes the information from configure/makefiles10 #if HAVE_CONFIG_H11 #include <config.h>12 #endif13 8 14 9 #include "stdincl.h" -
orxonox/trunk/src/stdincl.h
r3193 r3204 10 10 11 11 #define null 0 //!< null 12 13 // this includes the information from configure/makefiles 14 #if HAVE_CONFIG_H 15 #include <config.h> 16 #endif 12 17 13 18 #ifdef __WIN32__ … … 30 35 #include "list_template.h" 31 36 #include "error.h" 37 #include "debug.h" 32 38 #include "message_structures.h" 33 39 #include "orxonox.h"
Note: See TracChangeset
for help on using the changeset viewer.