mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-29 14:42:26 +00:00
Fix bug with GUI options not set when per-game setting is empty
svn-id: r41273
This commit is contained in:
parent
1bd6f6c99f
commit
8eb417e15e
@ -198,7 +198,7 @@ static void updateGameDescriptor(GameDescriptor &desc, const ADGameDescription *
|
||||
if (params.flags & kADFlagUseExtraAsHint)
|
||||
desc["extra"] = realDesc->extra;
|
||||
|
||||
if (realDesc->guioptions)
|
||||
if ((realDesc->guioptions | params.guioptions) != 0)
|
||||
desc["guioptions"] = Common::getGameGUIOptionsDescription(realDesc->guioptions | params.guioptions);
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user