From 3dc679215b7899514722439efbbf912a916be69d Mon Sep 17 00:00:00 2001 From: Michael Scire Date: Mon, 29 Oct 2018 17:38:24 -0700 Subject: [PATCH] fs.mitm: Remove debugging options --- stratosphere/fs_mitm/source/fsmitm_main.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/stratosphere/fs_mitm/source/fsmitm_main.cpp b/stratosphere/fs_mitm/source/fsmitm_main.cpp index 2d96ce78e..c96462eaa 100644 --- a/stratosphere/fs_mitm/source/fsmitm_main.cpp +++ b/stratosphere/fs_mitm/source/fsmitm_main.cpp @@ -131,12 +131,12 @@ int main(int argc, char **argv) AddMitmServerToManager(server_manager, "fsp-srv", 61); /* Create set:sys mitm server, delayed until set:sys is available. */ - //if (R_FAILED(threadCreate(&set_mitm_setup_thread, &CreateSettingsMitMServer, server_manager, 0x4000, 0x15, 0))) { + if (R_FAILED(threadCreate(&set_mitm_setup_thread, &CreateSettingsMitMServer, server_manager, 0x4000, 0x15, 0))) { /* TODO: Panic. */ - //} - //if (R_FAILED(threadStart(&set_mitm_setup_thread))) { + } + if (R_FAILED(threadStart(&set_mitm_setup_thread))) { /* TODO: Panic. */ - //} + } /* Loop forever, servicing our services. */ server_manager->Process();