From 48d80f57ebd3486a80df46ae1f0085fc8855955a Mon Sep 17 00:00:00 2001 From: Allen Webster Date: Wed, 19 Feb 2020 22:22:29 -0800 Subject: [PATCH] Mystery solved; print messages removed --- custom/4coder_custom.cpp | 1 - platform_linux/linux_4ed.cpp | 1 - 2 files changed, 2 deletions(-) diff --git a/custom/4coder_custom.cpp b/custom/4coder_custom.cpp index 4acd5551..3dda1c74 100644 --- a/custom/4coder_custom.cpp +++ b/custom/4coder_custom.cpp @@ -6,7 +6,6 @@ extern "C" b32 get_version(i32 maj, i32 min, i32 patch){ - fprintf(stderr, "CUS: %d.%d.%d\n", MAJOR, MINOR, PATCH); return(maj == MAJOR && min == MINOR && patch == PATCH); } diff --git a/platform_linux/linux_4ed.cpp b/platform_linux/linux_4ed.cpp index 4a366605..180c5bd7 100644 --- a/platform_linux/linux_4ed.cpp +++ b/platform_linux/linux_4ed.cpp @@ -1701,7 +1701,6 @@ main(int argc, char **argv){ system_error_box(custom_not_found_msg); } custom.get_version = (_Get_Version_Type*)system_get_proc(custom_library, "get_version"); - fprintf(stderr, "VER: %d.%d.%d\n", MAJOR, MINOR, PATCH); if (custom.get_version == 0){ system_error_box(custom_fail_load_msg); }