manually set the defaults for lcolor/rcolor/default_color for vb

our MDFN_GetSettingUI/MDFN_GetSettingI is set to assume base 10 instead of figuring out the format of the string, so the built in defaults dont work and always return 0
later MDFN_GetSettingUI/MDFN_GetSettingI should be made to be able to handle hex strings but this should suffice for now
This commit is contained in:
CasualPokePlayer 2022-05-30 00:30:24 -07:00
parent 58c28aefba
commit 892da6fee2
1 changed files with 3 additions and 3 deletions

View File

@ -23,10 +23,10 @@ namespace BizHawk.Emulation.Cores.Consoles.Nintendo.VB
{ "vb.3dmode", new() { NonSync = true/*, NoRestart = true*/ } }, // fixme: a restart shouldn't be needed, yet upstream doesn't allow that?
{ "vb.3dreverse", new() { NonSync = true } },
{ "vb.anaglyph.lcolor", new() { NonSync = true, NoRestart = true } },
{ "vb.anaglyph.lcolor", new() { Default = "16759296", NonSync = true, NoRestart = true } },
{ "vb.anaglyph.preset", new() { NonSync = true, NoRestart = true } },
{ "vb.anaglyph.rcolor", new() { NonSync = true, NoRestart = true } },
{ "vb.default_color", new() { NonSync = true, NoRestart = true } },
{ "vb.anaglyph.rcolor", new() { Default = "47871", NonSync = true, NoRestart = true } },
{ "vb.default_color", new() { Default = "15790320", NonSync = true, NoRestart = true } },
{ "vb.instant_display_hack", new() { NonSync = true, NoRestart = true } },
{ "vb.ledonscale", new() { NonSync = true, NoRestart = true } },
{ "vb.liprescale", new() { NonSync = true } },