Skip to content

Commit aa0103e

Browse files
committed
fix namespace
1 parent 503cb0b commit aa0103e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Source/System/GLCheck.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#include <string>
55
#include <sstream>
66
#include "ConsoleMan.h"
7+
using namespace RTE;
78

89
void CheckOpenGLError(const char* stmt, const char* fname, int line) {
910
GLenum errorCode = glGetError();
@@ -58,7 +59,7 @@ void CheckOpenGLError(const char* stmt, const char* fname, int line) {
5859
}
5960

6061
default: {
61-
error = "Unknown Error: " + std::to_string(errorCode);
62+
error = "Unknown Error" + std::to_string(errorCode);
6263
description = "";
6364
}
6465
}

0 commit comments

Comments
 (0)