diff options
author | Perttu Ahola <celeron55@gmail.com> | 2012-11-30 18:12:32 +0200 |
---|---|---|
committer | Perttu Ahola <celeron55@gmail.com> | 2012-12-02 00:38:26 +0200 |
commit | bee170570de7a796ac7b5ba6c0b39b253380b5e3 (patch) | |
tree | 66b8d4317df37790edb1caf3b4529a73c48639a5 /src/game.cpp | |
parent | ba73e75ef9b59608c78bff09b7808f076bef014b (diff) | |
download | dragonfireclient-bee170570de7a796ac7b5ba6c0b39b253380b5e3.tar.xz |
On-demand item meshes and textures
Diffstat (limited to 'src/game.cpp')
-rw-r--r-- | src/game.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/game.cpp b/src/game.cpp index 086293894..a38ffa13c 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -1416,11 +1416,12 @@ void the_game( g_gamecallback->changepassword_requested = false; } - /* - Process TextureSource's queue - */ + /* Process TextureSource's queue */ tsrc->processQueue(); + /* Process ItemDefManager's queue */ + itemdef->processQueue(gamedef); + /* Random calculations */ |