mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-06 04:52:16 +00:00
417b047cf3
git-svn-id: https://svn.eduke32.com/eduke32@6056 1a8010ca-5511-0410-912e-c29ae57300e0
20 lines
335 B
C
20 lines
335 B
C
|
|
#include "sdl_inc.h"
|
|
#include "sdlappicon.h"
|
|
|
|
static Uint8 sdlappicon_pixels[] = {
|
|
#if defined _WIN32 && SDL_MAJOR_VERSION==1
|
|
# include "eduke32_icon_32px.c"
|
|
#else
|
|
# include "eduke32_icon_48px.c"
|
|
#endif
|
|
};
|
|
|
|
struct sdlappicon sdlappicon = {
|
|
#if defined _WIN32 && SDL_MAJOR_VERSION==1
|
|
32,32,
|
|
#else
|
|
48,48,
|
|
#endif
|
|
sdlappicon_pixels
|
|
};
|