This website works better with JavaScript.
Home
Help
Sign In
lolengine
/
lol
mirror of
https://github.com/lolengine/lol
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
0
Wiki
Activity
Browse Source
Fix delete/free confusions in EglApp and SdlApp.
legacy
Sam Hocevar
sam
13 years ago
parent
7fd4603a82
commit
586302999b
2 changed files
with
2 additions
and
2 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+1
-1
src/eglapp.cpp
+1
-1
src/sdlapp.cpp
+ 1
- 1
src/eglapp.cpp
View File
@@ -187,7 +187,7 @@ EglApp::~EglApp()
XCloseDisplay(data->dpy);
#endif
free(data)
;
delete data
;
}
} /* namespace lol */
+ 1
- 1
src/sdlapp.cpp
View File
@@ -90,7 +90,7 @@ SdlApp::~SdlApp()
#if defined USE_SDL
SDL_Quit();
#endif
free(data)
;
delete data
;
}
} /* namespace lol */
Write
Preview
Loading…
Cancel
Save