mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-23 08:49:47 +00:00
25 lines
664 B
C
25 lines
664 B
C
#ifndef LIBRETRO_OPTIONS_H__
|
|
#define LIBRETRO_OPTIONS_H__
|
|
|
|
#define MEDNAFEN_CORE_NAME_MODULE "psx"
|
|
#ifdef HAVE_HW
|
|
#define MEDNAFEN_CORE_NAME "Beetle PSX HW"
|
|
#else
|
|
#define MEDNAFEN_CORE_NAME "Beetle PSX"
|
|
#endif
|
|
#define MEDNAFEN_CORE_VERSION "0.9.44.1"
|
|
#define MEDNAFEN_CORE_EXTENSIONS "exe|cue|toc|ccd|m3u|pbp|chd"
|
|
#define MEDNAFEN_CORE_GEOMETRY_BASE_W 320
|
|
#define MEDNAFEN_CORE_GEOMETRY_BASE_H 240
|
|
#define MEDNAFEN_CORE_GEOMETRY_MAX_W 700
|
|
#define MEDNAFEN_CORE_GEOMETRY_MAX_H 576
|
|
#define MEDNAFEN_CORE_GEOMETRY_ASPECT_RATIO (4.0 / 3.0)
|
|
|
|
#ifdef HAVE_HW
|
|
#define BEETLE_OPT(_o) ("beetle_psx_hw_" # _o)
|
|
#else
|
|
#define BEETLE_OPT(_o) ("beetle_psx_" # _o)
|
|
#endif
|
|
|
|
#endif
|