Skip to content

Commit

Permalink
not fail when dmnt not present
Browse files Browse the repository at this point in the history
  • Loading branch information
tomvita committed Sep 17, 2020
1 parent 1b9af57 commit 8b0dd26
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions server/source/noexs/diff
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Comparing files noexs.kip1 and NOEXS.KIP1
FC: no differences encountered

Binary file modified server/source/noexs/exefs.nsp
Binary file not shown.
2 changes: 1 addition & 1 deletion server/source/noexs/include/gecko.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
#include "net.h"

#define VER_MAJOR (1)
#define VER_MINOR (1)
#define VER_MINOR (2)
#define VER_PATCH (138)

#define GECKO_BUFFER_SIZE (2048 * 32)
Expand Down
Binary file added server/source/noexs/noexs.zip
Binary file not shown.
1 change: 1 addition & 0 deletions server/source/noexs/source/commands.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -194,6 +194,7 @@ static Result _attach(Gecko::Context& ctx){
dmnt = false;
ctx.status = Gecko::Status::Paused;
} else {
// return rc;
if (ctx.dbg.attached()) {
// dmntchtInitialize();
DmntCheatProcessMetadata cht;
Expand Down
6 changes: 3 additions & 3 deletions server/source/noexs/source/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -74,9 +74,9 @@ void __appInit(void) {
}

rc = dmntchtInitialize();
if (R_FAILED(rc)) {
fatalThrow(rc); // maybe set a variable like noSd or something? It doesn't HAVE to log.
}
// if (R_FAILED(rc)) {
// fatalThrow(rc); // maybe set a variable like noSd or something? It doesn't HAVE to log.
// }
}

void __appExit(void) {
Expand Down

0 comments on commit 8b0dd26

Please sign in to comment.