From 5e61e2f388e07051dcad467aeeda170a548f2f76 Mon Sep 17 00:00:00 2001 From: Bart Trzynadlowski Date: Thu, 31 Mar 2022 23:09:32 +0000 Subject: [PATCH] Added default values for PortIn, PortOut, and AddressOut --- Src/OSD/SDL/Main.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Src/OSD/SDL/Main.cpp b/Src/OSD/SDL/Main.cpp index 2e01010..53b2bc4 100644 --- a/Src/OSD/SDL/Main.cpp +++ b/Src/OSD/SDL/Main.cpp @@ -1433,6 +1433,9 @@ static Util::Config::Node DefaultConfig() // NetBoard config.Set("Network", false); config.Set("SimulateNet", true); + config.Set("PortIn", unsigned(1970)); + config.Set("PortOut", unsigned(1971)); + config.Set("AddressOut", "127.0.0.1"); #endif #else config.Set("InputSystem", "sdl");