Browse Source

bug fixes

Kajetan Johannes Hammerle 3 years ago
parent
commit
4a994d3a5c
2 changed files with 2 additions and 2 deletions
  1. 1 1
      rendering/FileTexture.h
  2. 1 1
      wrapper/GL.cpp

+ 1 - 1
rendering/FileTexture.h

@@ -1,7 +1,7 @@
 #ifndef FILETEXTURE_H
 #define FILETEXTURE_H
 
-#include "gl/Texture.h"
+#include "wrapper/Texture.h"
 #include "images/PNGReader.h"
 
 class FileTexture final {

+ 1 - 1
wrapper/GL.cpp

@@ -30,7 +30,7 @@ bool GL::checkAndPrintError(const char* message) {
             std::cout << message << ": an attempt has been made to perform an operation that would cause an internal stack to overflow\n";
             break;
         default:
-            std::cout << message << ": unknown OpenGL error '" << error << ''"\n";
+            std::cout << message << ": unknown OpenGL error '" << error << "'\n";
     }
     return true;
 }