From 2c3598aff1b668bcac49b4c249a3fd63eaaa5861 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=CD=85=CD=88=CC=A4=CC=96=CC=AA=CC=AA=CC=B1l=CC=AF=CC=AF?= =?UTF-8?q?=CC=AE=CC=BC=CD=8E=CC=AC=CD=9A=CC=B3=CC=A9=CC=96=CC=B2u=CC=9C?= =?UTF-8?q?=CC=BC=CD=89=CD=88=CC=A0b=CD=99=CC=AC=CC=98=CC=99=CC=B1=CC=97?= =?UTF-8?q?=CC=B2=CD=99b=CD=8D=CC=9E=CC=AC=CC=AC=CD=93=CC=BCl=CC=B0=CC=AA?= =?UTF-8?q?=CD=96=CC=AF=CC=BC=CC=9F=CD=85=CC=9F=CD=88=CC=96=CD=95=CC=9C?= =?UTF-8?q?=CC=B1=CC=9Cl=CC=BB=CC=97=CD=94=CC=9D=CC=AD=CC=B0=CD=9A=CD=87?= =?UTF-8?q?=CC=AF=CC=A5?= <34196146+blubbll@users.noreply.github.com> Date: Sun, 13 Oct 2019 19:28:23 +0200 Subject: [PATCH] Use %s to display strings correctly --- CubeModLauncher/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/CubeModLauncher/main.cpp b/CubeModLauncher/main.cpp index 344b921..c61f8d5 100644 --- a/CubeModLauncher/main.cpp +++ b/CubeModLauncher/main.cpp @@ -67,18 +67,18 @@ int main(int argc, char** argv) { //Inject our dll if ( !FileExists(MODLOADER_DLL) ) { - printf("%dll not found.\n", MODLOADER_DLL); + printf("%s not found.\n", MODLOADER_DLL); return Bail(1); } unsigned int loaderChecksum = crc32_file(MODLOADER_DLL); if (loaderChecksum != MODLOADER_CRC && !testMode) { - printf("%dll is the wrong version (%08X)\n", MODLOADER_DLL, loaderChecksum); + printf("%s is the wrong version (%08X)\n", MODLOADER_DLL, loaderChecksum); return Bail(1); } if (testMode) { - printf("%dll CRC: %08X\n", MODLOADER_DLL, loaderChecksum); + printf("%s CRC: %08X\n", MODLOADER_DLL, loaderChecksum); } Process process(CUBE_EXECUTABLE);