From 42e4a99552269cdeae1abbdc60e0f69341ae3566 Mon Sep 17 00:00:00 2001 From: Maschell Date: Thu, 25 Apr 2024 19:45:20 +0200 Subject: [PATCH] Remove udp logging --- source/main.cpp | 7 ------- 1 file changed, 7 deletions(-) diff --git a/source/main.cpp b/source/main.cpp index 560c0a5..0447663 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -8,8 +8,6 @@ #include #include #include -#include -#include static void StartMCPThreadIfMochaAlreadyRunning() { // start /dev/iosuhax and wupserver if mocha is already running @@ -26,9 +24,6 @@ static void StartMCPThreadIfMochaAlreadyRunning() { } int main(int argc, char **argv) { - WHBLogUdpInit(); - WHBLogPrintf("Hello from mocha"); - if (argc >= 1) { if (strncmp(argv[0], "fs:/", 4) == 0) { strncpy((char *) 0xF417FEF0, argv[0], 0xFF); @@ -55,7 +50,5 @@ int main(int argc, char **argv) { IOS_Ioctl(mcpFd, 100, &in, sizeof(in), &out, sizeof(out)); IOS_Close(mcpFd); } - - WHBLogPrintf("Bye from mocha"); return 0; }