Merge pull request #2927 from RSDuck/fullscreengui-fix

Correct "Read Speedup" to "Seek Speedup"
This commit is contained in:
Connor McLaughlin 2022-12-03 20:59:48 +10:00 committed by GitHub
commit 01fdcf2dde
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -2803,7 +2803,7 @@ void FullscreenUI::DrawConsoleSettingsPage()
"Speeds up CD-ROM reads by the specified factor. May improve loading speeds in some games, and break others.", "Speeds up CD-ROM reads by the specified factor. May improve loading speeds in some games, and break others.",
"CDROM", "ReadSpeedup", 1, cdrom_read_speeds.data(), cdrom_read_speeds.size(), 1); "CDROM", "ReadSpeedup", 1, cdrom_read_speeds.data(), cdrom_read_speeds.size(), 1);
DrawIntListSetting( DrawIntListSetting(
bsi, "Read Speedup", bsi, "Seek Speedup",
"Speeds up CD-ROM seeks by the specified factor. May improve loading speeds in some games, and break others.", "Speeds up CD-ROM seeks by the specified factor. May improve loading speeds in some games, and break others.",
"CDROM", "SeekSpeedup", 1, cdrom_seek_speeds.data(), cdrom_seek_speeds.size()); "CDROM", "SeekSpeedup", 1, cdrom_seek_speeds.data(), cdrom_seek_speeds.size());