summaryrefslogtreecommitdiff
path: root/src/render/safeopenglgraphics.cpp
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2013-10-23 19:50:09 +0300
committerAndrei Karas <akaras@inbox.ru>2013-10-23 19:50:09 +0300
commit033a6162914b8f6cdea446751160ca81fbd4c1ca (patch)
tree88495eb1523c113812f78bdc95ed0816a8ee9e86 /src/render/safeopenglgraphics.cpp
parent0dca3216743cd5deaffad45ca50fccd7280eb6bd (diff)
downloadplus-033a6162914b8f6cdea446751160ca81fbd4c1ca.tar.gz
plus-033a6162914b8f6cdea446751160ca81fbd4c1ca.tar.bz2
plus-033a6162914b8f6cdea446751160ca81fbd4c1ca.tar.xz
plus-033a6162914b8f6cdea446751160ca81fbd4c1ca.zip
replace some malloc/free by new/delete.
Diffstat (limited to 'src/render/safeopenglgraphics.cpp')
-rw-r--r--src/render/safeopenglgraphics.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/render/safeopenglgraphics.cpp b/src/render/safeopenglgraphics.cpp
index cd3338188..1daf054ba 100644
--- a/src/render/safeopenglgraphics.cpp
+++ b/src/render/safeopenglgraphics.cpp
@@ -449,7 +449,7 @@ SDL_Surface* SafeOpenGLGraphics::getScreenshot()
// Flip the screenshot, as OpenGL has 0,0 in bottom left
unsigned int lineSize = 3 * w;
- GLubyte* buf = static_cast<GLubyte*>(malloc(lineSize));
+ GLubyte* buf = new GLubyte[lineSize];
const int h2 = h / 2;
for (int i = 0; i < h2; i++)
@@ -464,7 +464,7 @@ SDL_Surface* SafeOpenGLGraphics::getScreenshot()
memcpy(bot, buf, lineSize);
}
- free(buf);
+ delete [] buf;
if (config.getBoolValue("usefbo"))
graphicsManager.deleteFBO(&mFbo);