This website works better with JavaScript.
首頁
說明
登入
lolengine
/
lol
镜像来自
https://github.com/lolengine/lol
關註
1
收藏
0
複製
0
程式碼
問題管理
0
版本發佈
0
Wiki
Activity
瀏覽代碼
Fix delete/free confusions in EglApp and SdlApp.
legacy
Sam Hocevar
sam
13 年之前
父節點
7fd4603a82
當前提交
586302999b
共有
2 個文件被更改
,包括
2 次插入
和
2 次删除
分割檢視
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
查看文件
@@ -187,7 +187,7 @@ EglApp::~EglApp()
XCloseDisplay(data->dpy);
#endif
free(data)
;
delete data
;
}
} /* namespace lol */
+ 1
- 1
src/sdlapp.cpp
查看文件
@@ -90,7 +90,7 @@ SdlApp::~SdlApp()
#if defined USE_SDL
SDL_Quit();
#endif
free(data)
;
delete data
;
}
} /* namespace lol */
Write
Preview
Loading…
取消
儲存