]> git.jsancho.org Git - lugaru.git/commitdiff
Removed useless STUBBED define
authorCôme Chilliet <come@chilliet.eu>
Wed, 14 Dec 2016 14:28:00 +0000 (21:28 +0700)
committerCôme Chilliet <come@chilliet.eu>
Wed, 14 Dec 2016 14:28:00 +0000 (21:28 +0700)
Source/Game.hpp
Source/Utils/ImageIO.cpp

index 596ade47f59dfb58d325024e922f0ff5f6f5dd97..2a0f874be549aa749b8a941ad842fe78ba62691b 100644 (file)
@@ -183,13 +183,6 @@ static __forceinline void swap_gl_buffers(void)
     frameticks = now;
 }
 
-extern "C" {
-    void UndefinedSymbolToExposeStubbedCode(void);
-}
-//#define STUBBED(x) UndefinedSymbolToExposeStubbedCode();
-#define STUBBED(x) { static bool seen = false; if (!seen) { seen = true; fprintf(stderr, "STUBBED: %s at %s:%d\n", x, __FILE__, __LINE__); } }
-//#define STUBBED(x)
-
 enum maptypes {
     mapkilleveryone, mapgosomewhere,
     mapkillsomeone, mapkillmost // These two are unused
index 778492c93fef8f3033e97d184a5f7ebdef7137d3..8bd5bfc33f3e0ff3f5e119ffd7f55d435c88f2d0 100644 (file)
@@ -51,21 +51,24 @@ ImageRec::~ImageRec()
 
 bool load_image(const char *file_name, ImageRec &tex)
 {
-    if (visibleloading)
+    if (visibleloading) {
         Game::LoadingScreen();
+    }
 
-    if ( tex.data == NULL )
+    if ( tex.data == NULL ) {
         return false;
+    }
 
     const char *ptr = strrchr((char *)file_name, '.');
     if (ptr) {
-        if (strcasecmp(ptr + 1, "png") == 0)
+        if (strcasecmp(ptr + 1, "png") == 0) {
             return load_png(file_name, tex);
-        else if (strcasecmp(ptr + 1, "jpg") == 0)
+        } else if (strcasecmp(ptr + 1, "jpg") == 0) {
             return load_jpg(file_name, tex);
+        }
     }
 
-    STUBBED("Unsupported image type");
+    std::cerr << "Unsupported image type" << std::endl;
     return false;
 }
 
@@ -73,11 +76,12 @@ bool save_screenshot(const char *file_name)
 {
     const char *ptr = strrchr((char *)file_name, '.');
     if (ptr) {
-        if (strcasecmp(ptr + 1, "png") == 0)
+        if (strcasecmp(ptr + 1, "png") == 0) {
             return save_screenshot_png((Folders::getScreenshotDir() + '/' + file_name).c_str());
+        }
     }
 
-    STUBBED("Unsupported image type");
+    std::cerr << "Unsupported image type" << std::endl;
     return false;
 }