mirror of
https://github.com/hedge-dev/UnleashedRecomp.git
synced 2026-04-30 22:31:44 +00:00
Fix else if chain.
This commit is contained in:
parent
c565a76f34
commit
60e9c39ba8
1 changed files with 3 additions and 3 deletions
|
|
@ -195,15 +195,15 @@ GuestTexture* GetThumbnail(const IConfigDef* cfg)
|
||||||
{
|
{
|
||||||
texture = isPlayStation ? g_controlTutorialPSThumbnail.get() : g_controlTutorialXBThumbnail.get();
|
texture = isPlayStation ? g_controlTutorialPSThumbnail.get() : g_controlTutorialXBThumbnail.get();
|
||||||
}
|
}
|
||||||
if (cfg == &Config::Vibration)
|
else if (cfg == &Config::Vibration)
|
||||||
{
|
{
|
||||||
texture = isPlayStation ? g_vibrationPSThumbnail.get() : g_vibrationXBThumbnail.get();
|
texture = isPlayStation ? g_vibrationPSThumbnail.get() : g_vibrationXBThumbnail.get();
|
||||||
}
|
}
|
||||||
if (cfg == &Config::AllowBackgroundInput)
|
else if (cfg == &Config::AllowBackgroundInput)
|
||||||
{
|
{
|
||||||
texture = isPlayStation ? g_backgroundInputPSThumbnail.get() : g_backgroundInputXBThumbnail.get();
|
texture = isPlayStation ? g_backgroundInputPSThumbnail.get() : g_backgroundInputXBThumbnail.get();
|
||||||
}
|
}
|
||||||
if (cfg == &Config::TimeOfDayTransition)
|
else if (cfg == &Config::TimeOfDayTransition)
|
||||||
{
|
{
|
||||||
TryGetValueThumbnail<ETimeOfDayTransition>(cfg, &g_timeOfDayTransitionThumbnails, &texture);
|
TryGetValueThumbnail<ETimeOfDayTransition>(cfg, &g_timeOfDayTransitionThumbnails, &texture);
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue