diff options
author | neonloop | 2021-03-31 16:26:36 +0000 |
---|---|---|
committer | neonloop | 2021-03-31 16:26:36 +0000 |
commit | 295b35c2f32887a1b73b1509668bf278c52929e1 (patch) | |
tree | fb6e5905f2daa864cc6cd1c61b7b32610ed94eae /libretro_core_options.h | |
parent | 3ef78ae250b5460bf1b69c4d1f05e27985fa9d1b (diff) | |
parent | fd2079354572372f4516fcc13c51992ef4b4c715 (diff) | |
download | picogpsp-295b35c2f32887a1b73b1509668bf278c52929e1.tar.gz picogpsp-295b35c2f32887a1b73b1509668bf278c52929e1.tar.bz2 picogpsp-295b35c2f32887a1b73b1509668bf278c52929e1.zip |
Merge remote-tracking branch 'libretro/master' into pico-fe
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.", |