mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-22 03:05:16 +00:00
commit
9655101978
5 changed files with 6 additions and 4 deletions
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
@ -22,7 +22,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name : Checkout
|
name : Checkout
|
||||||
uses : actions/checkout@v3
|
uses : actions/checkout@v4
|
||||||
-
|
-
|
||||||
name : Build artifacts
|
name : Build artifacts
|
||||||
id : build
|
id : build
|
||||||
|
@ -35,7 +35,7 @@ jobs:
|
||||||
id : set-output
|
id : set-output
|
||||||
shell : bash
|
shell : bash
|
||||||
run : |
|
run : |
|
||||||
echo "::set-output name=filename-${{ matrix.emu }}::${{ steps.build.outputs.filename }}"
|
echo "filename-${{ matrix.emu }}=${{ steps.build.outputs.filename }}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
release:
|
release:
|
||||||
needs: build
|
needs: build
|
||||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
||||||
|
/linkerscripts/symstemp.ld
|
||||||
starlight_patch_100/**
|
starlight_patch_100/**
|
||||||
build100/**
|
build100/**
|
||||||
romfs stuff/**
|
romfs stuff/**
|
||||||
|
|
|
@ -11,7 +11,6 @@
|
||||||
class GameModeManager {
|
class GameModeManager {
|
||||||
SEAD_SINGLETON_DISPOSER(GameModeManager)
|
SEAD_SINGLETON_DISPOSER(GameModeManager)
|
||||||
GameModeManager();
|
GameModeManager();
|
||||||
~GameModeManager();
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
void setMode(GameMode mode);
|
void setMode(GameMode mode);
|
||||||
|
|
|
@ -439,6 +439,8 @@ bool SocketClient::tryReconnect() {
|
||||||
if (init(sock_ip, port).isSuccess()) { // call init again
|
if (init(sock_ip, port).isSuccess()) { // call init again
|
||||||
Logger::log("Reconnect Successful.\n");
|
Logger::log("Reconnect Successful.\n");
|
||||||
return true;
|
return true;
|
||||||
|
} else {
|
||||||
|
nn::os::SleepThread(nn::TimeSpan::FromSeconds(1));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -91,7 +91,7 @@ StageSceneStateServerConfig::StageSceneStateServerConfig(
|
||||||
void StageSceneStateServerConfig::init() {
|
void StageSceneStateServerConfig::init() {
|
||||||
initNerve(&nrvStageSceneStateServerConfigMainMenu, 0);
|
initNerve(&nrvStageSceneStateServerConfigMainMenu, 0);
|
||||||
|
|
||||||
#ifdef EMU
|
#if EMU
|
||||||
char ryujinx[0x10] = { 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
char ryujinx[0x10] = { 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 };
|
||||||
nn::account::Uid user;
|
nn::account::Uid user;
|
||||||
nn::account::GetLastOpenedUser(&user);
|
nn::account::GetLastOpenedUser(&user);
|
||||||
|
|
Loading…
Reference in a new issue