1
0
mirror of synced 2024-11-23 22:51:02 +01:00

Fix build script

This commit is contained in:
BroGamer 2022-06-22 12:55:43 +12:00
parent 8c4617e704
commit 0c3df94c65
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ patches:
make -C patches/8.18
.PHONY: dist-no-7z
dist-no-7z: options ${OUT} ${patches}
dist-no-7z: options ${OUT} patches
mkdir -p out/plugins
cp ${TARGET}/${OUT}.dll out/
cp ${TARGET}/patches.*.dll out/plugins

View File

@ -76,7 +76,7 @@ printColour (int colour, const char *format, ...) {
char buffer[255];
vsprintf (buffer, format, args);
SetConsoleTextAttribute (consoleHandle, colour);
printf (buffer);
printf ("%s", buffer);
SetConsoleTextAttribute (consoleHandle, FOREGROUND_BLUE | FOREGROUND_GREEN | FOREGROUND_RED);
va_end (args);