![]() |
|
PATCH small fix for DolphinNoGUI - Printable Version +- Dolphin, the GameCube and Wii emulator - Forums (https://forums.dolphin-emu.org) +-- Forum: Dolphin Site (https://forums.dolphin-emu.org/Forum-dolphin-site) +--- Forum: Dolphin Patches (Archive) (https://forums.dolphin-emu.org/Forum-dolphin-patches-archive) +--- Thread: PATCH small fix for DolphinNoGUI (/Thread-patch-small-fix-for-dolphinnogui) |
PATCH small fix for DolphinNoGUI - gmthor85 - 03-04-2010 the function CSIDevice_GCController::GetNetInput is not available if Dolphin is compiled without the GUI. This patch disables the use of it, if USE_WX == 0. If Source/Core/DolphinWX/Src/NetFunctions.cpp is supposed to be compiled when wx is disabled then this patch is wrong. If so, NetFunctions.cpp has to be always compiled and all wx dependent functionality has to be disabled if USE_WX == 0. RE: PATCH small fix for DolphinNoGUI - James333 - 03-04-2010 What about #if defined(HAVE_WX) && HAVE_WX instead of #if USE_WX != 0 Anyway, I think that now netplay is not even enabled in GUI mode RE: PATCH small fix for DolphinNoGUI - gmthor85 - 03-04-2010 (03-04-2010, 01:08 AM)James333 Wrote: What about That would probably be cleaner. Can somebody commit either way? RE: PATCH small fix for DolphinNoGUI - anthonyda - 03-06-2010 Yeah, would be nice to have the option back in common build asap, thx. RE: PATCH small fix for DolphinNoGUI - Capcom - 07-17-2010 Cool, thanks RE: PATCH small fix for DolphinNoGUI - savvy - 07-20-2010 whats the use of this? if theres no gui how can you load a game? RE: PATCH small fix for DolphinNoGUI - boogerlad - 07-20-2010 command line mode. |