From ae167f0b961146073c236c705bdf24f4dc178854 Mon Sep 17 00:00:00 2001 From: Andreas Grois Date: Sun, 11 Mar 2018 14:43:59 +0100 Subject: Replace std::cout with std::cerr for actual error messages. Remove some debugging output --- BuddhaTest/src/BuddhaTest.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'BuddhaTest/src/BuddhaTest.cpp') diff --git a/BuddhaTest/src/BuddhaTest.cpp b/BuddhaTest/src/BuddhaTest.cpp index 37843c6..1709853 100644 --- a/BuddhaTest/src/BuddhaTest.cpp +++ b/BuddhaTest/src/BuddhaTest.cpp @@ -87,7 +87,7 @@ int main(int argc, char * argv[]) GLuint ComputeShader = Helpers::LoadComputeShader(computePath, settings.localWorkgroupSizeX, settings.localWorkgroupSizeY, settings.localWorkgroupSizeZ); if(VertexAndFragmentShaders == 0 || ComputeShader == 0) { - std::cout << "Something went wrong with loading the shaders. Abort." << std::endl; + std::cerr << "Something went wrong with loading the shaders. Abort." << std::endl; glfwTerminate(); return 1; } -- cgit v1.2.3