Rename CriticalSection wrapper functions to match std::mutex usage

EnterCallbackIdCriticalSection/LeaveCallbackIdCriticalSection -> lockCallbackScenes/unlockCallbackScenes, EnterSaveNotificationSection/LeaveSaveNotificationSection -> lockSaveNotification/unlockSaveNotification, m_saveNotificationCriticalSection -> m_saveNotificationMutex.
This commit is contained in:
MatthewBeshay
2026-03-31 00:16:16 +11:00
parent e4520df31f
commit a513fa7597
7 changed files with 18 additions and 18 deletions

View File

@@ -95,7 +95,7 @@ UIScene_InGameSaveManagementMenu::~UIScene_InGameSaveManagementMenu() {
}
delete[] m_saveDetails;
}
app.LeaveSaveNotificationSection();
app.unlockSaveNotification();
StorageManager.SetSaveDisabled(false);
StorageManager.ContinueIncompleteOperation();
}