aboutsummaryrefslogtreecommitdiff
path: root/frontend/libretro_core_options.h
diff options
context:
space:
mode:
authorJustin Weiss2020-02-21 21:17:31 -0800
committerJustin Weiss2020-02-25 22:58:22 -0800
commit679b71e250ce6557f05b57882747029ab6af7edc (patch)
tree4a7d690b6c3b3cf0d2e7ae8eb0be1dbd2a992990 /frontend/libretro_core_options.h
parent58e485d6efcecfe0fb7d072d705cf658e6162b4e (diff)
downloadpcsx_rearmed-679b71e250ce6557f05b57882747029ab6af7edc.tar.gz
pcsx_rearmed-679b71e250ce6557f05b57882747029ab6af7edc.tar.bz2
pcsx_rearmed-679b71e250ce6557f05b57882747029ab6af7edc.zip
Add async CD access
Diffstat (limited to 'frontend/libretro_core_options.h')
-rw-r--r--frontend/libretro_core_options.h14
1 files changed, 13 insertions, 1 deletions
diff --git a/frontend/libretro_core_options.h b/frontend/libretro_core_options.h
index badd856..6f26c71 100644
--- a/frontend/libretro_core_options.h
+++ b/frontend/libretro_core_options.h
@@ -961,7 +961,19 @@ struct retro_core_option_definition option_defs_us[] = {
},
"disabled",
},
-
+#ifndef _WIN32
+ {
+ "pcsx_rearmed_async_cd",
+ "CD Access Method (Restart)",
+ "Select method used to read data from content disk images. 'Synchronous' mimics original hardware. 'Asynchronous' can reduce stuttering on devices with slow storage.",
+ {
+ { "sync", "Synchronous" },
+ { "async", "Asynchronous" },
+ { NULL, NULL},
+ },
+ "sync",
+ },
+#endif
/* ADVANCED OPTIONS */
{
"pcsx_rearmed_noxadecoding",