OK, fix save states and not revert it by accident

This commit is contained in:
Duckey77
2023-02-03 18:18:17 -07:00
parent 1c08698a45
commit 128f8106f6
+1 -1
View File
@@ -489,7 +489,7 @@ static NSString *binCueFix(NSString *path)
{
if (!VMManager::HasValidVM())
return;
bool success = VMManager::SaveState(fileName.fileSystemRepresentation);
bool success = VMManager::SaveState(fileName.fileSystemRepresentation, false, false);
block(success, success ? nil : [NSError errorWithDomain:OEGameCoreErrorDomain code:OEGameCoreCouldNotSaveStateError userInfo:@{NSLocalizedDescriptionKey: @"PCSX2 Could not save the current state.", NSFilePathErrorKey: fileName}]);