Skip to content

Commit d6ee15b

Browse files
committed
Comment out critical section prints
Signed-off-by: Isaac Marovitz <isaacryu@icloud.com>
1 parent 391414f commit d6ee15b

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

MarathonRecomp/kernel/imports.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -790,7 +790,7 @@ void RtlCompareMemoryUlong()
790790

791791
uint32_t RtlInitializeCriticalSection(XRTL_CRITICAL_SECTION* cs)
792792
{
793-
printf("RtlInitializeCriticalSection %x\n", cs);
793+
// printf("RtlInitializeCriticalSection %x\n", cs);
794794
cs->Header.Absolute = 0;
795795
cs->LockCount = -1;
796796
cs->RecursionCount = 0;
@@ -1253,7 +1253,7 @@ void XexGetModuleHandle()
12531253

12541254
bool RtlTryEnterCriticalSection(XRTL_CRITICAL_SECTION* cs)
12551255
{
1256-
printf("RtlTryEnterCriticalSection\n");
1256+
// printf("RtlTryEnterCriticalSection\n");
12571257
uint32_t thisThread = g_ppcContext->r13.u32;
12581258
assert(thisThread != NULL);
12591259

@@ -1272,7 +1272,7 @@ bool RtlTryEnterCriticalSection(XRTL_CRITICAL_SECTION* cs)
12721272

12731273
void RtlInitializeCriticalSectionAndSpinCount(XRTL_CRITICAL_SECTION* cs, uint32_t spinCount)
12741274
{
1275-
printf("RtlInitializeCriticalSectionAndSpinCount\n");
1275+
// printf("RtlInitializeCriticalSectionAndSpinCount\n");
12761276
cs->Header.Absolute = (spinCount + 255) >> 8;
12771277
cs->LockCount = -1;
12781278
cs->RecursionCount = 0;

0 commit comments

Comments
 (0)