diff options
author | Autechre | 2021-03-22 22:18:13 +0100 |
---|---|---|
committer | GitHub | 2021-03-22 22:18:13 +0100 |
commit | f3ce8bbd0c0a660488a9d193fe86f15209dc8b68 (patch) | |
tree | cd043bd5458cec7152794af6b14ff5274020b6a0 /libretro_core_options.h | |
parent | 5ef784ab8af08b9629b573b3cfd25f21384771af (diff) | |
parent | f6f3a910397afb769f84d1332014c4eda1fedebe (diff) | |
download | picogpsp-f3ce8bbd0c0a660488a9d193fe86f15209dc8b68.tar.gz picogpsp-f3ce8bbd0c0a660488a9d193fe86f15209dc8b68.tar.bz2 picogpsp-f3ce8bbd0c0a660488a9d193fe86f15209dc8b68.zip |
Merge pull request #114 from davidgfnet/master
Adding Normmatt's BIOS as a built-in BIOS
Diffstat (limited to 'libretro_core_options.h')
-rw-r--r-- | libretro_core_options.h | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/libretro_core_options.h b/libretro_core_options.h index b5b138d..d2b95fa 100644 --- a/libretro_core_options.h +++ b/libretro_core_options.h @@ -54,6 +54,29 @@ extern "C" { struct retro_core_option_definition option_defs_us[] = { { + "gpsp_bios", + "BIOS", + "Choose the BIOS image to use. The official BIOS must be provided by the user. Using a non-official (or builtin) BIOS might result in incompatibility problems with some games. Best results are to be achieved with the official Nintendo BIOS.", + { + { "auto", "Auto select" }, + { "builtin", "Builtin BIOS" }, + { "official", "Original BIOS" }, + { NULL, NULL }, + }, + "auto" + }, + { + "gpsp_boot_mode", + "Boot mode", + "Choose whether to boot the BIOS before the game or not. There's not much difference in either modes.", + { + { "game", "Boot to game" }, + { "bios", "Boot to BIOS" }, + { NULL, NULL }, + }, + "game" + }, + { "gpsp_frameskip", "Frameskip", "Skip frames to avoid audio buffer under-run (crackling). Improves performance at the expense of visual smoothness. 'Auto' skips frames when advised by the frontend. 'Auto (Threshold)' utilises the 'Frameskip Threshold (%)' setting. 'Fixed Interval' utilises the 'Frameskip Interval' setting.", |