diff options
Diffstat (limited to 'src/common.cpp')
-rw-r--r-- | src/common.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/common.cpp b/src/common.cpp index 80488eb..8dcbd11 100644 --- a/src/common.cpp +++ b/src/common.cpp @@ -4,9 +4,9 @@ GLuint loadTexture(const char *fileName){ SDL_Surface *image = IMG_Load(fileName); if(!image)return 0; - #ifdef DEBUG +#ifdef DEBUG DEBUG_printf("Loaded image file: %s\n", fileName); - #endif // DEBUG +#endif // DEBUG unsigned object = 0; //creates a new unsigned variable for the texture glGenTextures(1, &object); //turns "object" into a texture |