Skip to content

Commit 0c86e06

Browse files
committed
formatting
1 parent 324df91 commit 0c86e06

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Source/System/GLCheck.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -67,9 +67,9 @@ void CheckOpenGLError(const char* stmt, const char* fname, int line) {
6767
// Log the error
6868
std::stringstream errorMessage;
6969
errorMessage << "ERROR: An internal OpenGL call failed in "
70-
<< fileString.substr(fileString.find_last_of("\\/") + 1) << "(" << line << ")."
71-
<< "\nExpression:\n " << stmt
72-
<< "\nError description:\n " << error << "\n " << description << "\n";
70+
<< fileString.substr(fileString.find_last_of("\\/") + 1) << "(" << line << ")."
71+
<< "\nExpression:\n " << stmt
72+
<< "\nError description:\n " << error << "\n " << description << "\n";
7373
g_ConsoleMan.PrintString(errorMessage.str());
7474
}
7575
}

0 commit comments

Comments
 (0)