options_menu: video callback on option reset

This commit is contained in:
Hyper 2024-12-08 03:43:12 +00:00
parent 652e9d52dc
commit 1713a8c0ec

View file

@ -504,6 +504,10 @@ static void DrawConfigOption(int32_t rowIndex, float yOffset, ConfigDef<T>* conf
if (g_canReset && padState.IsTapped(SWA::eKeyState_X))
{
config->MakeDefault();
// TODO: check if value was changed?
VideoConfigValueChangedCallback(config);
Game_PlaySound("sys_worldmap_decide");
}
}