mirror of
https://github.com/libretro/RetroArch
synced 2025-01-31 15:32:59 +00:00
21 lines
504 B
C
21 lines
504 B
C
|
#ifndef _FRONTEND_CONSOLE_H
|
||
|
#define _FRONTEND_CONSOLE_H
|
||
|
|
||
|
#if defined(HAVE_LIBRETRO_MANAGEMENT) || defined(IS_SALAMANDER)
|
||
|
#ifdef GEKKO
|
||
|
#define SALAMANDER_FILE "boot.dol"
|
||
|
#define DEFAULT_EXE_EXT ".dol"
|
||
|
#elif defined(__CELLOS_LV2__)
|
||
|
#define SALAMANDER_FILE "EBOOT.BIN"
|
||
|
#define DEFAULT_EXE_EXT ".SELF"
|
||
|
#elif defined(_XBOX1)
|
||
|
#define SALAMANDER_FILE "default.xbe"
|
||
|
#define DEFAULT_EXE_EXT ".xbe"
|
||
|
#elif defined(_XBOX360)
|
||
|
#define SALAMANDER_FILE "default.xex"
|
||
|
#define DEFAULT_EXE_EXT ".xex"
|
||
|
#endif
|
||
|
#endif
|
||
|
|
||
|
#endif
|