diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-07-22 10:22:35 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-07-22 10:22:35 -0400 |
commit | 215e5ee6ce089c3e0d5be28fd816bc7031b6acab (patch) | |
tree | ae8560c73d6e8e164bc45d5d96421c106aaa6b07 /src | |
parent | 132172601e249327d30b3756c9dbfc73cb2b6b0c (diff) |
style background is useless
Diffstat (limited to 'src')
-rw-r--r-- | src/world.cpp | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/world.cpp b/src/world.cpp index ecd8ae4..22ffdff 100644 --- a/src/world.cpp +++ b/src/world.cpp @@ -262,12 +262,6 @@ void WorldSystem::loader(void) // style tag if (tagName == "style") { world.styleFolder = wxml->StrAttribute("folder"); - - unsigned int styleNo; - if (wxml->QueryUnsignedAttribute("background", &styleNo) != XML_NO_ERROR) - UserError("XML Error: No background given in <style> in " + xmlPath); - - world.style = static_cast<WorldBGType>(styleNo); world.bgm = wxml->StrAttribute("bgm"); std::vector<std::string> bgFiles; |