Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 6bd1e82

Browse files
committed
Fix Dirty Output to debug out
1 parent c19f0ca commit 6bd1e82

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/ps2/ps2_dirty.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
#include "history_tracker/ps2_history_tracker.h"
33
#include "ps2_psram.h"
44
#include "ps2_cardman.h"
5+
#include "debug.h"
56

67
#include "bigmem.h"
78
#define dirty_heap bigmem.ps2.dirty_heap
@@ -119,7 +120,7 @@ void ps2_dirty_task(void) {
119120
uint64_t end = time_us_64();
120121

121122
if (hit)
122-
printf("remain to flush - %d - this one flushed %d and took %d ms\n", num_after, hit, (int)((end - start) / 1000));
123+
debug_printf("remain to flush - %d - this one flushed %d and took %d ms\n", num_after, hit, (int)((end - start) / 1000));
123124

124125
if (num_after || !ps2_dirty_lockout_expired())
125126
ps2_dirty_activity = 1;

0 commit comments

Comments
 (0)