From 9c0310909e94487c4f5a2a648f3f076b70d5118a Mon Sep 17 00:00:00 2001 From: Ultra <113462733+UltraDaCat@users.noreply.github.com> Date: Sat, 27 Jun 2026 16:53:06 +0200 Subject: [PATCH] ShadNET hotfix (#4635) * We try stuff till something works, God bless the new config backend :pray: * Hopefully we did it? * whoops * what * schizophrenia and clang fix * once a schizo, always a schizo * all in my head? * I DIDN'T EVEN TOUCH THIS LINE BTW :pray: * fixing an oopsie * that should cover it? * silly clusmy ultra * that should be all hopefully(i hate gh mobile) * clang --- src/core/emulator_settings.h | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/src/core/emulator_settings.h b/src/core/emulator_settings.h index 79797396c..aff785773 100644 --- a/src/core/emulator_settings.h +++ b/src/core/emulator_settings.h @@ -205,7 +205,12 @@ struct GeneralSettings { make_override("trophy_notification_side", &GeneralSettings::trophy_notification_side), make_override("connected_to_network", - &GeneralSettings::connected_to_network)}; + &GeneralSettings::connected_to_network), + make_override("shadnet_server", &GeneralSettings::shadnet_server), + make_override("shadnet_webapi_server", + &GeneralSettings::shadnet_webapi_server), + make_override("signaling_info", &GeneralSettings::signaling_info), + make_override("enable_upnp", &GeneralSettings::enable_upnp)}; } };