Skip to content

Commit faa4a10

Browse files
committed
remove debugging code
1 parent da95ef8 commit faa4a10

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

libogc/console.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,6 @@ static void consoleHandleColorEsc(int code)
535535
case 1: // bold
536536
escapeSeq.color.flags &= ~CONSOLE_COLOR_FAINT;
537537
escapeSeq.color.flags |= CONSOLE_COLOR_BOLD;
538-
SYS_Report("set bold\n");
539538
break;
540539

541540
case 2: // faint
@@ -756,7 +755,6 @@ static void consoleColorApply(void)
756755
currentConsole->bg = escapeSeq.color.bg;
757756
currentConsole->fg = escapeSeq.color.fg;
758757
currentConsole->flags = escapeSeq.color.flags;
759-
SYS_Report("fg: %x, bg: %x, flags: %08x\n", currentConsole->fg, currentConsole->bg, currentConsole->flags);
760758
}
761759

762760
void newRow()

0 commit comments

Comments
 (0)