mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-25 21:45:12 +00:00
fix headless servers with mods that access marioObj on load (#37)
This commit is contained in:
parent
cb6f5f2b30
commit
4fc0cc92e6
1 changed files with 5 additions and 0 deletions
|
@ -435,6 +435,11 @@ int main(int argc, char *argv[]) {
|
||||||
configNetworkSystem = NS_SOCKET;
|
configNetworkSystem = NS_SOCKET;
|
||||||
configHostPort = gCLIOpts.networkPort;
|
configHostPort = gCLIOpts.networkPort;
|
||||||
|
|
||||||
|
// Horrible, hacky fix for mods that access marioObj straight away
|
||||||
|
// best fix: host with the standard main menu method
|
||||||
|
static struct Object sHackyObject = { 0 };
|
||||||
|
gMarioStates[0].marioObj = &sHackyObject;
|
||||||
|
|
||||||
extern void djui_panel_do_host(bool reconnecting, bool playSound);
|
extern void djui_panel_do_host(bool reconnecting, bool playSound);
|
||||||
djui_panel_do_host(NULL, false);
|
djui_panel_do_host(NULL, false);
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in a new issue