From 892da6fee2de46378baa1288dd472f09732d41f3 Mon Sep 17 00:00:00 2001 From: CasualPokePlayer <50538166+CasualPokePlayer@users.noreply.github.com> Date: Mon, 30 May 2022 00:30:24 -0700 Subject: [PATCH] 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 --- .../Consoles/Nintendo/VB/VirtualBoyee.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/VB/VirtualBoyee.cs b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/VB/VirtualBoyee.cs index c86c31171c..156f40a116 100644 --- a/src/BizHawk.Emulation.Cores/Consoles/Nintendo/VB/VirtualBoyee.cs +++ b/src/BizHawk.Emulation.Cores/Consoles/Nintendo/VB/VirtualBoyee.cs @@ -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 } },