Skip to content

Commit 8cd87e7

Browse files
committed
disable color escapes on DPRINTF macro
1 parent 14cb712 commit 8cd87e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/launchelf.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
sio_printf(format, ##args)
6060
#elif defined(POWERPC_UART) || defined(COMMON_PRINTF) || defined(UDPTTY) //printf has to travel to IOP, add color escape to make up the diff
6161
#define DPRINTF(format, args...) \
62-
printf("\033[1;94;40m"format"\033[m", ##args)
62+
printf(/*"\033[1;94;40m"*/ format /*"\033[m"*/, ##args)
6363
#else
6464
#define DPRINTF(format, args...)// strip away printf from consumer builds
6565
#endif

0 commit comments

Comments
 (0)