Allow patched arrays to start with 0x
This commit is contained in:
@@ -60,7 +60,7 @@ DEFINE_bool(fullscreen, false, "Whether to launch the emulator in fullscreen.",
|
||||
"Display");
|
||||
|
||||
DEFINE_bool(controller_hotkeys, true,
|
||||
"Toggle hotkeys for Xbox and PS controllers.", "General");
|
||||
"Hotkeys for Xbox and PS controllers.", "General");
|
||||
|
||||
DEFINE_string(
|
||||
postprocess_antialiasing, "",
|
||||
@@ -1570,7 +1570,8 @@ void EmulatorWindow::LoadRecentlyLaunchedTitles() {
|
||||
std::time_t last_run_time =
|
||||
*entry_table->get_as<uint64_t>("last_run_time");
|
||||
|
||||
if (path.empty() || !std::filesystem::exists(path)) {
|
||||
std::error_code ec = {};
|
||||
if (path.empty() || !std::filesystem::exists(path, ec)) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user