I guess those warnings stay. :|

Fixed more warnings without DEBUGGINGAIDS.


git-svn-id: https://svn.eduke32.com/eduke32@661 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
plagman 2008-03-26 04:11:26 +00:00
parent 6970f27e72
commit cdc8b11ad4
3 changed files with 4 additions and 15 deletions

View file

@ -1,11 +1,4 @@
#include <gdk-pixbuf/gdk-pixdata.h>
/* GdkPixbuf RGB C-Source image dump */
const GdkPixdata startbanner_pixdata = {
@ -16,7 +9,6 @@ const GdkPixdata startbanner_pixdata = {
90, /* width */
280, /* height */
/* pixel_data: */
(guint8 *)
"\2\36E\2\36E\2\36E\5\40H\2\36E\5\40H\2\36E\2\36E\5\40H\2\36E\2\36E\2"
"\36E\5\40H\5\40H\5\40H\5\40H\5\40H\5\40H\5\40H\0\"M\4\37M\4\37M\0\"M"
"\4\37M\4\37M\0\"M\0\"M\4\37M\0\"M\0#O\0#O\0$P\0#O\0$P\0$P\14#Q\0%Q\0"

View file

@ -1,11 +1,5 @@
#include <gdk-pixbuf/gdk-pixdata.h>
/* GdkPixbuf RGB C-Source image dump */
const GdkPixdata startbanner_pixdata = {
@ -16,7 +10,6 @@ const GdkPixdata startbanner_pixdata = {
90, /* width */
280, /* height */
/* pixel_data: */
(guint8 *)
"\30""1\1\30""1\1\30""1\1\25""0\10\30""1\1\25""0\10\30""1\1\30""1\1\25"
"0\10\30""1\1\25""0\10\30""1\1\30""1\1\23""3\3\27""1\12\23""3\3\23""3"
"\3\23""3\3\23""3\3\27""1\12\23""3\3\23""3\3\27""1\12\23""3\3\23""3\3"

View file

@ -215,7 +215,9 @@ int main(int argc, char *argv[])
//
int initsystem(void)
{
#ifdef DEBUGGINGAIDS
const SDL_VideoInfo *vid;
#endif
const SDL_version *linked = SDL_Linked_Version();
SDL_version compiled;
char drvname[32];
@ -336,6 +338,8 @@ void debugprintf(const char *f, ...)
va_start(va,f);
Bvfprintf(stderr, f, va);
va_end(va);
#else
UNREFERENCED_PARAMETER(f);
#endif
}