Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[MKW] Do not automatically display the exception console #77

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 0 additions & 27 deletions payload/import/egg/exception.hpp

This file was deleted.

7 changes: 2 additions & 5 deletions payload/wwfcPayload.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#include "import/egg/exception.hpp"
#include "wwfcLogin.hpp"
#include "wwfcPatch.hpp"
#include "wwfcSupport.hpp"
Expand Down Expand Up @@ -115,8 +114,8 @@ static void CallCtors(const wwfc_payload* const payload)
continue;
}

ctor = (decltype(ctor)
) (reinterpret_cast<const char*>(payload) + ctorOffset);
ctor = (decltype(ctor)) (reinterpret_cast<const char*>(payload) +
ctorOffset);
(*ctor)();
}
}
Expand All @@ -143,8 +142,6 @@ s32 EntryAfterGOT(wwfc_payload* payload)
# endif
#endif

EGG::Exception::SetUserCallBack(nullptr);

CallCtors(payload);

Patch::ApplyPatchList(
Expand Down