diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-07-12 13:52:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-07-12 13:52:46 +0300 |
commit | 52009c2a994e1f9cfdb8dfee6641a21ef49865c9 (patch) | |
tree | 05fe0d64b5075b10c657ad06dda683bfc4a82a11 /src | |
parent | 7ae821cb4aeaa48871944b0d6997fb79f423122e (diff) | |
download | plus-52009c2a994e1f9cfdb8dfee6641a21ef49865c9.tar.gz plus-52009c2a994e1f9cfdb8dfee6641a21ef49865c9.tar.bz2 plus-52009c2a994e1f9cfdb8dfee6641a21ef49865c9.tar.xz plus-52009c2a994e1f9cfdb8dfee6641a21ef49865c9.zip |
Fix logging about emulated OpenGL functions.
Diffstat (limited to 'src')
-rw-r--r-- | src/render/mglfunctions.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/render/mglfunctions.h b/src/render/mglfunctions.h index 900042710..bfddb5a2c 100644 --- a/src/render/mglfunctions.h +++ b/src/render/mglfunctions.h @@ -60,7 +60,7 @@ } #define emulateFunction(func) m##func = emu##func; \ - logger->log("emulated function: #func") + logger->log("emulated function: " #func) #endif // USE_OPENGL #endif // RENDER_MGLFUNCTIONS_H |