mirror of
https://github.com/VCMP-SqMod/SqMod.git
synced 2025-01-19 03:57:14 +01:00
Remove extraneous character from printf inside the IRC module.
This commit is contained in:
parent
a2b39933ea
commit
6de4d387a9
@ -494,7 +494,7 @@ void OutputMessageImpl(const char * msg, va_list args)
|
|||||||
|
|
||||||
SetConsoleTextAttribute(hstdout, csb_before.wAttributes);
|
SetConsoleTextAttribute(hstdout, csb_before.wAttributes);
|
||||||
#else
|
#else
|
||||||
printf("%c[0;32m[SQMOD]%c[0;37m", 27, 27, msg);
|
printf("%c[0;32m[SQMOD]%c[0;37m", 27, 27);
|
||||||
vprintf(msg, args);
|
vprintf(msg, args);
|
||||||
puts("");
|
puts("");
|
||||||
#endif
|
#endif
|
||||||
@ -517,7 +517,7 @@ void OutputErrorImpl(const char * msg, va_list args)
|
|||||||
|
|
||||||
SetConsoleTextAttribute(hstdout, csb_before.wAttributes);
|
SetConsoleTextAttribute(hstdout, csb_before.wAttributes);
|
||||||
#else
|
#else
|
||||||
printf("%c[0;32m[SQMOD]%c[0;37m", 27, 27, msg);
|
printf("%c[0;32m[SQMOD]%c[0;37m", 27, 27);
|
||||||
vprintf(msg, args);
|
vprintf(msg, args);
|
||||||
puts("");
|
puts("");
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
x
Reference in New Issue
Block a user