pal_config.h 677 B

12345678910111213141516171819202122
  1. #ifndef PAL_CONFIG_H
  2. # define PAL_CONFIG_H
  3. # define PAL_PREFIX "/mnt/sdcard/sdlpal/"
  4. # define PAL_SAVE_PREFIX "/mnt/sdcard/sdlpal/"
  5. # define PAL_HAS_TOUCH 1
  6. # define PAL_DEFAULT_WINDOW_WIDTH 320
  7. # define PAL_DEFAULT_WINDOW_HEIGHT 200
  8. # if SDL_VERSION_ATLEAST(2,0,0)
  9. # define PAL_VIDEO_INIT_FLAGS (SDL_WINDOW_SHOWN)
  10. # else
  11. # define PAL_VIDEO_INIT_FLAGS (SDL_HWSURFACE | SDL_FULLSCREEN)
  12. # endif
  13. #define PAL_SDL_INIT_FLAGS (SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_CDROM | SDL_INIT_NOPARACHUTE | SDL_INIT_JOYSTICK)
  14. # define PAL_PLATFORM "Android"
  15. # define PAL_CREDIT "Rikku2000"
  16. # define PAL_PORTYEAR "2013"
  17. #endif