mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-21 18:55: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:
|
||||
-
|
||||
name : Checkout
|
||||
uses : actions/checkout@v3
|
||||
uses : actions/checkout@v4
|
||||
-
|
||||
name : Build artifacts
|
||||
id : build
|
||||
|
@ -35,7 +35,7 @@ jobs:
|
|||
id : set-output
|
||||
shell : bash
|
||||
run : |
|
||||
echo "::set-output name=filename-${{ matrix.emu }}::${{ steps.build.outputs.filename }}"
|
||||
echo "filename-${{ matrix.emu }}=${{ steps.build.outputs.filename }}" >> $GITHUB_OUTPUT
|
||||
|
||||
release:
|
||||
needs: build
|
||||
|
|
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
|||
/linkerscripts/symstemp.ld
|
||||
starlight_patch_100/**
|
||||
build100/**
|
||||
romfs stuff/**
|
||||
|
|
|
@ -11,7 +11,6 @@
|
|||
class GameModeManager {
|
||||
SEAD_SINGLETON_DISPOSER(GameModeManager)
|
||||
GameModeManager();
|
||||
~GameModeManager();
|
||||
|
||||
public:
|
||||
void setMode(GameMode mode);
|
||||
|
|
|
@ -439,6 +439,8 @@ bool SocketClient::tryReconnect() {
|
|||
if (init(sock_ip, port).isSuccess()) { // call init again
|
||||
Logger::log("Reconnect Successful.\n");
|
||||
return true;
|
||||
} else {
|
||||
nn::os::SleepThread(nn::TimeSpan::FromSeconds(1));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -91,7 +91,7 @@ StageSceneStateServerConfig::StageSceneStateServerConfig(
|
|||
void StageSceneStateServerConfig::init() {
|
||||
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 };
|
||||
nn::account::Uid user;
|
||||
nn::account::GetLastOpenedUser(&user);
|
||||
|
|
Loading…
Reference in a new issue