mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
Merge pull request #4495 from slashiee/dump-textures-hotkey
Add a hotkey for toggling texture dumps
This commit is contained in:
@ -1335,6 +1335,10 @@ void CFrame::ParseHotkeys()
|
||||
OSDChoice = 4;
|
||||
g_Config.bDisableFog = !g_Config.bDisableFog;
|
||||
}
|
||||
if (IsHotkey(HK_TOGGLE_DUMPTEXTURES))
|
||||
{
|
||||
g_Config.bDumpTextures = !g_Config.bDumpTextures;
|
||||
}
|
||||
if (IsHotkey(HK_TOGGLE_TEXTURES))
|
||||
g_Config.bHiresTextures = !g_Config.bHiresTextures;
|
||||
Core::SetIsThrottlerTempDisabled(IsHotkey(HK_TOGGLE_THROTTLE, true));
|
||||
|
Reference in New Issue
Block a user