mirror of
https://github.com/overte-org/overte.git
synced 2025-04-26 01:16:35 +02:00
Fix debug compile error
This commit is contained in:
parent
edfb25bfe2
commit
8e5da5acaa
1 changed files with 1 additions and 1 deletions
|
@ -145,7 +145,7 @@ bool GLBackend::checkGLError(const char* name) {
|
||||||
|
|
||||||
bool GLBackend::checkGLErrorDebug(const char* name) {
|
bool GLBackend::checkGLErrorDebug(const char* name) {
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
checkGLError(name);
|
return checkGLError(name);
|
||||||
#else
|
#else
|
||||||
Q_UNUSED(name);
|
Q_UNUSED(name);
|
||||||
return false;
|
return false;
|
||||||
|
|
Loading…
Reference in a new issue