diff options
Diffstat (limited to 'src/common/showmsg.c')
-rw-r--r-- | src/common/showmsg.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/common/showmsg.c b/src/common/showmsg.c index 903fb583b..8c7fc9a13 100644 --- a/src/common/showmsg.c +++ b/src/common/showmsg.c @@ -35,6 +35,8 @@ int _ShowMessage(const char *string, enum msg_type flag){ // by MC Cameri case MSG_WARNING: //Bright Yellow strcpy(prefix,CL_YELLOW"[Warning]"CL_RESET":"); break; + case MSG_DEBUG: + strcpy(prefix,CL_CYAN"[Debug]"CL_RESET":"); case MSG_ERROR: //Bright Red (Regular errors) strcpy(prefix,CL_RED"[Error]"CL_RESET":"); break; |