aboutsummaryrefslogtreecommitdiffstats
path: root/yage/yage.cpp
diff options
context:
space:
mode:
authorYann Herklotz <ymherklotz@gmail.com>2017-10-31 22:11:18 +0000
committerYann Herklotz <ymherklotz@gmail.com>2017-10-31 22:11:18 +0000
commitf776df6076725d14679b31168e3ede53c966182e (patch)
treeb843d7ef0d0722a1b3571ee09aa1345d19c60e7f /yage/yage.cpp
parent1bb0ef8960c71ef505a351702bec54c01ba15e22 (diff)
downloadYAGE-f776df6076725d14679b31168e3ede53c966182e.tar.gz
YAGE-f776df6076725d14679b31168e3ede53c966182e.zip
renaming base folder
Diffstat (limited to 'yage/yage.cpp')
-rw-r--r--yage/yage.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/yage/yage.cpp b/yage/yage.cpp
index a141d9aa..68acac5a 100644
--- a/yage/yage.cpp
+++ b/yage/yage.cpp
@@ -10,6 +10,7 @@
#include <GLFW/glfw3.h>
+#include <iostream>
#include <stdexcept>
namespace yage
@@ -17,7 +18,7 @@ namespace yage
void glfwErrorCallback(int, const char *description)
{
- fprintf(stderr, "ERROR: %s\n", description);
+ std::cerr << "ERROR: %s\n" << description;
}
void init()