diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-11-27 18:49:32 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-11-27 18:49:32 -0500 |
commit | b1d3354d93187a6bededc280ddb6dee5b159bbe7 (patch) | |
tree | 64fb7e7ecdb77e0bc8579720444f23485d439168 /src/world.cpp | |
parent | 95f6378e62cc6a7f25305d6f2317ad25d459f9c0 (diff) |
menu, indoor fixes
Diffstat (limited to 'src/world.cpp')
-rw-r--r-- | src/world.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/world.cpp b/src/world.cpp index 4ab8af7..cd606af 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -178,6 +178,7 @@ bool WorldSystem::save(void) void WorldSystem::load(const std::string& file) { + auto& render = *game::engine.getSystem<RenderSystem>(); auto str2coord = [](std::string s) -> vec2 { auto cpos = s.find(','); s[cpos] = '\0'; @@ -275,7 +276,7 @@ void WorldSystem::load(const std::string& file) world.indoorWidth = wxml->FloatAttribute("width"); auto str = wxml->StrAttribute("texture"); - auto tex = Texture::loadTexture(str); + auto tex = render.loadTexture(str); world.indoorTex = tex; } |