diff --git a/Core/HLE/sceKernelModule.cpp b/Core/HLE/sceKernelModule.cpp index 50f6aad59..033ea5d4e 100644 --- a/Core/HLE/sceKernelModule.cpp +++ b/Core/HLE/sceKernelModule.cpp @@ -885,9 +885,6 @@ void __KernelStartModule(Module *m, int args, const char *argp, SceKernelSMOptio SceUID threadID = __KernelSetupRootThread(m->GetUID(), args, argp, options->priority, options->stacksize, options->attribute); __KernelSetThreadRA(threadID, NID_MODULERETURN); - - // TODO: if current thread, put it in wait state, waiting for the new thread - // TODO: Really? That sounds fishy. }