diff --git a/source-code/source/plugins/Novidia/src/framework.h b/source-code/source/plugins/Novidia/src/framework.h index 2a3e735..14fde8f 100644 --- a/source-code/source/plugins/Novidia/src/framework.h +++ b/source-code/source/plugins/Novidia/src/framework.h @@ -155,18 +155,18 @@ void InjectCode(void* address, const std::vector data) bool hasConflicts() { - printf("[Novidia] Checking for conflicts...\n"); + puts("[Novidia] Checking for conflicts..."); if(GetModuleHandleW(L"DivaGL.dva") != NULL) { // detected DivaGL - printf("[Novidia] Detected DivaGL! Quitting!\n"); + puts("[Novidia] Detected DivaGL! Quitting!"); #ifdef _DEBUG MessageBoxExW(NULL, L"Detected DivaGL! Quitting!\n", L"Novidia", MB_OK, 0); #endif return true; } - printf("[Novidia] No conflicts found.\n"); + puts("[Novidia] No conflicts found."); return false; } diff --git a/source-code/source/plugins/ShaderPatch/src/framework.h b/source-code/source/plugins/ShaderPatch/src/framework.h index 8a6c624..e5c3f74 100644 --- a/source-code/source/plugins/ShaderPatch/src/framework.h +++ b/source-code/source/plugins/ShaderPatch/src/framework.h @@ -165,18 +165,18 @@ LPCWSTR CONFIG_FILE = CONFIG_FILE_STRING.c_str(); bool hasConflicts() { - printf("[ShaderPatch] Checking for conflicts...\n"); + puts("[ShaderPatch] Checking for conflicts..."); if (GetModuleHandleW(L"DivaGL.dva") != NULL) { // detected DivaGL - printf("[ShaderPatch] Detected DivaGL! Quitting!\n"); + puts("[ShaderPatch] Detected DivaGL! Quitting!"); #ifdef _DEBUG MessageBoxExW(NULL, L"Detected DivaGL! Quitting!\n", L"ShaderPatch", MB_OK, 0); #endif return true; } - printf("[ShaderPatch] No conflicts found.\n"); + puts("[ShaderPatch] No conflicts found."); return false; }