Skip to content

Commit

Permalink
meh
Browse files Browse the repository at this point in the history
  • Loading branch information
israpps committed Nov 14, 2023
1 parent 48be441 commit f62984b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions engine/inc/debug/debug.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class TyraDebug {
writeInLogFile(&ss);
} else if (Tyra::Info::loggingMode == LOGGING_EESIO) {
initializeEESIO();
sio_puts(ss.str().c_str());
sio_putsn(ss.str().c_str());
} else {
printf("%s", ss.str().c_str());
}
Expand Down Expand Up @@ -93,7 +93,7 @@ class TyraDebug {
writeInLogFile(&ss2);
} else if (Tyra::Info::loggingMode == LOGGING_EESIO) {
initializeEESIO();
sio_puts(ss2.str().c_str());
sio_putsn(ss2.str().c_str());
} else {
printf("%s", ss2.str().c_str());
}
Expand Down Expand Up @@ -125,7 +125,7 @@ class TyraDebug {
writeInLogFile(&ss);
} else if (Tyra::Info::loggingMode == LOGGING_EESIO) {
initializeEESIO();
sio_puts(ss.str().c_str());
sio_putsn(ss.str().c_str());
} else {
printf("%s", ss.str().c_str());
}
Expand Down
2 changes: 1 addition & 1 deletion engine/src/debug/debug.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@ void TyraDebug::initializeEESIO() {
printf("TYRA: EE_SIO Enabled & STDOUT/STDERR hooked\n")
#endif
EESIO_Initialized = true;
}
}

0 comments on commit f62984b

Please sign in to comment.