mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-02-04 21:00:58 +00:00
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:
parent
6970f27e72
commit
cdc8b11ad4
3 changed files with 4 additions and 15 deletions
|
@ -1,11 +1,4 @@
|
||||||
#include <gdk-pixbuf/gdk-pixdata.h>
|
#include <gdk-pixbuf/gdk-pixdata.h>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* GdkPixbuf RGB C-Source image dump */
|
/* GdkPixbuf RGB C-Source image dump */
|
||||||
|
|
||||||
const GdkPixdata startbanner_pixdata = {
|
const GdkPixdata startbanner_pixdata = {
|
||||||
|
@ -16,7 +9,6 @@ const GdkPixdata startbanner_pixdata = {
|
||||||
90, /* width */
|
90, /* width */
|
||||||
280, /* height */
|
280, /* height */
|
||||||
/* pixel_data: */
|
/* 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"
|
"\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"
|
"\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"
|
"\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"
|
||||||
|
|
|
@ -1,11 +1,5 @@
|
||||||
#include <gdk-pixbuf/gdk-pixdata.h>
|
#include <gdk-pixbuf/gdk-pixdata.h>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/* GdkPixbuf RGB C-Source image dump */
|
/* GdkPixbuf RGB C-Source image dump */
|
||||||
|
|
||||||
const GdkPixdata startbanner_pixdata = {
|
const GdkPixdata startbanner_pixdata = {
|
||||||
|
@ -16,7 +10,6 @@ const GdkPixdata startbanner_pixdata = {
|
||||||
90, /* width */
|
90, /* width */
|
||||||
280, /* height */
|
280, /* height */
|
||||||
/* pixel_data: */
|
/* 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"
|
"\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"
|
"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"
|
"\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"
|
||||||
|
|
|
@ -215,7 +215,9 @@ int main(int argc, char *argv[])
|
||||||
//
|
//
|
||||||
int initsystem(void)
|
int initsystem(void)
|
||||||
{
|
{
|
||||||
|
#ifdef DEBUGGINGAIDS
|
||||||
const SDL_VideoInfo *vid;
|
const SDL_VideoInfo *vid;
|
||||||
|
#endif
|
||||||
const SDL_version *linked = SDL_Linked_Version();
|
const SDL_version *linked = SDL_Linked_Version();
|
||||||
SDL_version compiled;
|
SDL_version compiled;
|
||||||
char drvname[32];
|
char drvname[32];
|
||||||
|
@ -336,6 +338,8 @@ void debugprintf(const char *f, ...)
|
||||||
va_start(va,f);
|
va_start(va,f);
|
||||||
Bvfprintf(stderr, f, va);
|
Bvfprintf(stderr, f, va);
|
||||||
va_end(va);
|
va_end(va);
|
||||||
|
#else
|
||||||
|
UNREFERENCED_PARAMETER(f);
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue