This website works better with JavaScript.
首頁
說明
登入
lolengine
/
lol
镜像来自
https://github.com/lolengine/lol
關註
1
收藏
0
複製
0
程式碼
問題管理
0
版本發佈
0
Wiki
Activity
瀏覽代碼
core: do not deregister Tilers from Sprites, it’s asymmetrical.
legacy
Sam Hocevar
sam
13 年之前
父節點
203ac1a404
當前提交
3bc83d24a4
共有
2 個文件被更改
,包括
2 次插入
和
2 次删除
分割檢視
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-1
src/dict.cpp
+0
-1
src/sprite.cpp
+ 2
- 1
src/dict.cpp
查看文件
@@ -144,7 +144,8 @@ void Dict::RemoveSlot(Entity *entity)
}
#if !LOL_RELEASE
Log::Error("removing unregistered entity %p\n", entity);
Log::Error("removing unregistered entity %p (%s)\n",
entity, entity->GetName());
#endif
}
+ 0
- 1
src/sprite.cpp
查看文件
@@ -56,7 +56,6 @@ void Sprite::TickDraw(float seconds)
Sprite::~Sprite()
{
Tiler::Deregister(data->tileset);
delete data;
}
Write
Preview
Loading…
取消
儲存