diff options
author | t895 <[email protected]> | 2024-01-24 12:33:34 -0500 |
---|---|---|
committer | t895 <[email protected]> | 2024-01-25 12:53:48 -0500 |
commit | 1a3fc3724aa2d38e717a8dcbfcc6c8a808a693b6 (patch) | |
tree | bea2cc265f8c2ca59a2f642128e6ee6d1c1196a6 /src/yuzu/main.h | |
parent | 889c5d2705f8b39e27d0adf75c6831902d74943d (diff) | |
download | yuzu-mainline-1a3fc3724aa2d38e717a8dcbfcc6c8a808a693b6.tar.gz yuzu-mainline-1a3fc3724aa2d38e717a8dcbfcc6c8a808a693b6.zip |
frontend_common: Remove key rederivation and keep key check
Diffstat (limited to 'src/yuzu/main.h')
-rw-r--r-- | src/yuzu/main.h | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h index 280fae5c3..6b72094ff 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h @@ -125,11 +125,6 @@ enum class EmulatedDirectoryTarget { SDMC, }; -enum class ReinitializeKeyBehavior { - NoWarning, - Warning, -}; - namespace VkDeviceInfo { class Record; } @@ -400,7 +395,7 @@ private slots: void OnMiiEdit(); void OnOpenControllerMenu(); void OnCaptureScreenshot(); - void OnReinitializeKeys(ReinitializeKeyBehavior behavior); + void OnCheckFirmwareDecryption(); void OnLanguageChanged(const QString& locale); void OnMouseActivity(); bool OnShutdownBegin(); @@ -441,7 +436,6 @@ private: void LoadTranslation(); void OpenPerGameConfiguration(u64 title_id, const std::string& file_name); bool CheckDarkMode(); - bool CheckSystemArchiveDecryption(); bool CheckFirmwarePresence(); void SetFirmwareVersion(); void ConfigureFilesystemProvider(const std::string& filepath); |