pal_config.h 678 B

12345678910111213141516171819202122232425
  1. #ifndef PAL_CONFIG_H
  2. # define PAL_CONFIG_H
  3. #define PAL_PREFIX "./"
  4. #define PAL_SAVE_PREFIX "./"
  5. # define PAL_DEFAULT_WINDOW_WIDTH 320
  6. # define PAL_DEFAULT_WINDOW_HEIGHT 240
  7. # if SDL_VERSION_ATLEAST(2,0,0)
  8. # define PAL_VIDEO_INIT_FLAGS (SDL_WINDOW_SHOWN)
  9. # else
  10. # define PAL_VIDEO_INIT_FLAGS (SDL_SWSURFACE | SDL_FULLSCREEN)
  11. # endif
  12. #define PAL_SDL_INIT_FLAGS (SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_CDROM | SDL_INIT_NOPARACHUTE | SDL_INIT_JOYSTICK)
  13. # define PAL_PLATFORM "GPH Caanoo & Wiz"
  14. # define PAL_CREDIT "Rikku2000"
  15. # define PAL_PORTYEAR "2011"
  16. # define MIN_DEADZONE -16384
  17. # define MAX_DEADZONE 16384
  18. #endif