aboutsummaryrefslogtreecommitdiff
path: root/frontend/libretro_core_options.h
diff options
context:
space:
mode:
authornegativeExponent2020-11-04 21:16:24 +0800
committernegativeExponent2020-11-04 21:38:12 +0800
commit1d2757f476f5c10229e10fa16107d73b0c801fa5 (patch)
tree4d9d6e6227faee8b316fe039e9ee6a21b627a537 /frontend/libretro_core_options.h
parent96b0d7854b486457c3af6180ebf5560c94df9158 (diff)
downloadpcsx_rearmed-1d2757f476f5c10229e10fa16107d73b0c801fa5.tar.gz
pcsx_rearmed-1d2757f476f5c10229e10fa16107d73b0c801fa5.tar.bz2
pcsx_rearmed-1d2757f476f5c10229e10fa16107d73b0c801fa5.zip
CHD: Support for precache mode CD access method
https://github.com/libretro/pcsx_rearmed/issues/261
Diffstat (limited to 'frontend/libretro_core_options.h')
-rw-r--r--frontend/libretro_core_options.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/frontend/libretro_core_options.h b/frontend/libretro_core_options.h
index 3f589cc..21f6783 100644
--- a/frontend/libretro_core_options.h
+++ b/frontend/libretro_core_options.h
@@ -935,10 +935,11 @@ struct retro_core_option_definition option_defs_us[] = {
{
"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.",
+ "Select method used to read data from content disk images. 'Synchronous' mimics original hardware. 'Asynchronous' can reduce stuttering on devices with slow storage. 'Precache' loads disk image into memory for faster access (CHD only).",
{
- { "sync", "Synchronous" },
- { "async", "Asynchronous" },
+ { "sync", "Synchronous" },
+ { "async", "Asynchronous" },
+ { "precache", "Precache" },
{ NULL, NULL},
},
"sync",