]> git.mxchange.org Git - quix0rs-blobwars.git/commitdiff
Fix warnings from -W.
authorGuus Sliepen <guus@debian.org>
Sat, 21 Nov 2015 14:40:52 +0000 (15:40 +0100)
committerGuus Sliepen <guus@debian.org>
Sat, 21 Nov 2015 14:40:52 +0000 (15:40 +0100)
src/CGraphics.cpp
src/CPak.cpp
src/init.cpp
src/particles.cpp

index 7dd4201200769e5deae1518016d03fd3ea9aaecf..0beb6ca3ad4dd5f27cb5deb2e1142be72a6abe94 100644 (file)
@@ -550,11 +550,12 @@ void Graphics::loadFont(int i, const char *filename, int pointSize)
        }
        
        #if USEPAK
+               (void)filename;
                char tempPath[PATH_MAX];
                snprintf(tempPath, sizeof tempPath, "%sfont.ttf", engine->userHomeDirectory);
                font[i] = TTF_OpenFont(tempPath, pointSize);
        #else
-               font[i] = TTF_OpenFont("data/vera.ttf", pointSize);
+               font[i] = TTF_OpenFont(filename, pointSize);
        #endif
 
        if (!font[i])
@@ -1087,6 +1088,9 @@ void Graphics::showLoading(int amount, int max)
 
        drawRect(120, 420, 400, 10, black, white, screen);
        drawRect(121, 421, currentLoading, 8, red, screen);
+       #else
+       (void)amount;
+       (void)max;
        #endif
 }
 
index 1872fd930bf9df9330f3a6ae603cf3d8b78b0fdc..7427df3ccc0e664aacdb32fa1299f54c2c6a10a2 100644 (file)
@@ -101,7 +101,9 @@ void Pak::setPakFile(const char *pakFilename)
        }
        
        fclose(pak);
-       
+
+       #else
+       (void)pakFilename;
        #endif
 }
 
index 4376c4185ceefa713f53d2d84bd868e4f4bad30b..c3b9abcae481e10edcba03de166b517d4cb1a1af 100644 (file)
@@ -209,6 +209,8 @@ void saveConfig()
 //
 int initMedalService(void *data)
 {
+       (void)data;
+
        SDL_mutexP(medalServer.lock);
        
        char connectMessage[1024];
@@ -293,7 +295,7 @@ void initSystem()
        }
 
        // Increase the size of the window if we have large desktop resolutions
-       SDL_DisplayMode displayMode = {0};
+       SDL_DisplayMode displayMode = {};
        SDL_GetDesktopDisplayMode(0, &displayMode);
        int w = graphics.screen->w;
        int h = graphics.screen->h;
index ea38ede85914a30ff2aa03b4e3fec1bcf5748528..5ea25974d34d4fd2397503b6314ab755af98569b 100644 (file)
@@ -87,7 +87,10 @@ void addFireTrailParticle(float x, float y)
 
 void addFireParticles(float x, float y, int amount)
 {
-       map.addParticle(x + Math::rrand(-2, 2), y + Math::rrand(-2, 2), 0, 1, Math::rrand(5, 30), graphics.red, graphics.getSprite("Explosion", true), PAR_COLLIDES);
+       for (int i = 0 ; i < amount ; i++)
+       {
+               map.addParticle(x + Math::rrand(-2, 2), y + Math::rrand(-2, 2), 0, 1, Math::rrand(5, 30), graphics.red, graphics.getSprite("Explosion", true), PAR_COLLIDES);
+       }
 }
 
 void addBubble(float x, float y)