pal_config.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. /* -*- mode: c; tab-width: 4; c-basic-offset: 4; c-file-style: "linux" -*- */
  2. //
  3. // Copyright (c) 2009-2011, Wei Mingzhi <whistler_wmz@users.sf.net>.
  4. // Copyright (c) 2011-2017, SDLPAL development team.
  5. // All rights reserved.
  6. //
  7. // This file is part of SDLPAL.
  8. //
  9. // SDLPAL is free software: you can redistribute it and/or modify
  10. // it under the terms of the GNU General Public License as published by
  11. // the Free Software Foundation, either version 3 of the License, or
  12. // (at your option) any later version.
  13. //
  14. // This program is distributed in the hope that it will be useful,
  15. // but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. // GNU General Public License for more details.
  18. //
  19. // You should have received a copy of the GNU General Public License
  20. // along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. //
  22. // 3ds/pal_config.h: Nintendo 3DS specific header.
  23. // @Author: Lou Yihua <louyihua@21cn.com>, 2017.
  24. //
  25. #ifndef PAL_CONFIG_H
  26. # define PAL_CONFIG_H
  27. # define PAL_PREFIX "sdmc:/3ds/sdlpal/"
  28. # define PAL_SAVE_PREFIX "sdmc:/3ds/sdlpal/"
  29. # define PAL_CONFIG_PREFIX "sdmc:/3ds/sdlpal/"
  30. # define PAL_SCREENSHOT_PREFIX "sdmc:/3ds/sdlpal/"
  31. # define PAL_AUDIO_DEFAULT_BUFFER_SIZE 2048
  32. # define PAL_HAS_JOYSTICKS 0
  33. # define PAL_HAS_MP3 0
  34. # define PAL_HAS_OGG 0
  35. # define PAL_HAS_TOUCH 0
  36. # define PAL_DEFAULT_WINDOW_WIDTH 320
  37. # define PAL_DEFAULT_WINDOW_HEIGHT 240
  38. # define PAL_VIDEO_INIT_FLAGS (SDL_SWSURFACE | SDL_TOPSCR | SDL_CONSOLEBOTTOM | SDL_FULLSCREEN)
  39. # define PAL_SDL_INIT_FLAGS (SDL_INIT_VIDEO | SDL_INIT_AUDIO)
  40. # define PAL_PLATFORM "Nintendo 3DS"
  41. # define PAL_CREDIT "ZephRay"
  42. # define PAL_PORTYEAR "2017"
  43. # define PAL_LARGE static
  44. # define PAL_FORCE_UPDATE_ON_PALETTE_SET
  45. # define PAL_FILESYSTEM_IGNORE_CASE 1
  46. # define PAL_SCALE_SCREEN FALSE
  47. # include <3ds.h>
  48. #endif