]> git.jsancho.org Git - lugaru.git/blobdiff - Source/Game.h
Some cleans, fullscreen is back if "--windowed" isn't passed as option.
[lugaru.git] / Source / Game.h
index 00dfb53dd47f280ed1705905f58300ec78805cca..32d14890b9f1b2f79fe3a0bbfca12f18291904e4 100644 (file)
@@ -300,7 +300,7 @@ class Game
 
 //keeps track of which textures are loaded
 //TODO: delete them properly
-struct TextureInfo{
+struct TextureInfo {
     bool isLoaded;
     bool isSkin;
     const char* fileName;
@@ -310,7 +310,7 @@ struct TextureInfo{
     GLubyte* array;
     int* skinsize;
 
-    void load(){
+    void load() {
         if(isSkin)
             Game::LoadTextureSaveData(fileName,ptextureid,mipmap,array,skinsize,isLoaded);
         else