eduke32_icon.c
1 2 #include "sdl_inc.h" 3 #include "sdlappicon.h" 4 5 static Uint8 sdlappicon_pixels[] = { 6 #if defined _WIN32 && SDL_MAJOR_VERSION==1 7 # include "eduke32_icon_32px.c" 8 #else 9 # include "eduke32_icon_48px.c" 10 #endif 11 }; 12 13 struct sdlappicon sdlappicon = { 14 #if defined _WIN32 && SDL_MAJOR_VERSION==1 15 32,32, 16 #else 17 48,48, 18 #endif 19 sdlappicon_pixels 20 };