removed unused functions to set/get internal error messages
authorHolger Schemel <info@artsoft.org>
Fri, 18 Sep 2020 23:06:43 +0000 (01:06 +0200)
committerHolger Schemel <info@artsoft.org>
Fri, 18 Sep 2020 23:06:43 +0000 (01:06 +0200)
src/libgame/image.c
src/libgame/misc.c
src/libgame/misc.h
src/libgame/system.c

index 820b966cd9ae1036745082c9942d41aa3cad08a4..1a61ff922ed15ce71d9b734f95e7f7ab80c184ea 100644 (file)
@@ -43,8 +43,7 @@ static void *Load_Image(char *filename)
 
   if ((img_info->bitmaps[IMG_BITMAP_STANDARD] = LoadImage(filename)) == NULL)
   {
-    Warn("cannot load image file '%s': LoadImage() failed: %s",
-        filename, GetError());
+    Warn("cannot load image file '%s': LoadImage() failed", filename);
 
     free(img_info);
 
index 0b70e206b6002424b9adf0b94254a77b44919ab9..a09bc20e53f8ea90e4116013054e8005fd106521 100644 (file)
@@ -1321,30 +1321,6 @@ void GetOptions(int argc, char *argv[],
 }
 
 
-// ----------------------------------------------------------------------------
-// error handling functions
-// ----------------------------------------------------------------------------
-
-#define MAX_INTERNAL_ERROR_SIZE                1024
-
-// used by SetError() and GetError() to store internal error messages
-static char internal_error[MAX_INTERNAL_ERROR_SIZE];
-
-void SetError(char *format, ...)
-{
-  va_list ap;
-
-  va_start(ap, format);
-  vsnprintf(internal_error, MAX_INTERNAL_ERROR_SIZE, format, ap);
-  va_end(ap);
-}
-
-char *GetError(void)
-{
-  return internal_error;
-}
-
-
 // ----------------------------------------------------------------------------
 // checked memory allocation and freeing functions
 // ----------------------------------------------------------------------------
index 32dc36c26abc90313ce3d4ba62192aff95cade32..1c51888f9350bb6aab4adfba2b0ec98fbef9b7dd 100644 (file)
@@ -168,9 +168,6 @@ void GetOptions(int, char **,
                void (*print_usage_function)(void),
                void (*print_version_function)(void));
 
-void SetError(char *, ...);
-char *GetError(void);
-
 void *checked_malloc(unsigned int);
 void *checked_calloc(unsigned int);
 void *checked_realloc(void *, unsigned int);
index 4e500cb24174bfd6bf8eb126e0b976e7d638457c..67995e3d82c2da295693988cc924af443b93dfa4 100644 (file)
@@ -1160,7 +1160,7 @@ Bitmap *LoadCustomImage(char *basename)
     Fail("LoadCustomImage(): cannot find file '%s'", basename);
 
   if ((new_bitmap = LoadImage(filename)) == NULL)
-    Fail("LoadImage('%s') failed: %s", basename, GetError());
+    Fail("LoadImage('%s') failed", basename);
 
   return new_bitmap;
 }
@@ -1188,7 +1188,7 @@ void ReloadCustomImage(Bitmap *bitmap, char *basename)
 
   if ((new_bitmap = LoadImage(filename)) == NULL)
   {
-    Warn("LoadImage('%s') failed: %s", basename, GetError());
+    Warn("LoadImage('%s') failed", basename);
 
     return;
   }