aboutsummaryrefslogtreecommitdiffstats
path: root/src/components
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2019-09-03 17:58:04 -0400
committerClyne Sullivan <clyne@bitgloo.com>2019-09-03 17:58:04 -0400
commit0b3d24c4295bb89eb4ce3f91163cabd64d0ca6e2 (patch)
tree33c40562963045f7e450861820705d00d3cfc0c2 /src/components
parent1b1cdfe9013726ef82e54ca7a15ef262201f57a0 (diff)
render: use tab.get for strings
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Render.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/Render.hpp b/src/components/Render.hpp
index 3f1750f..073cbdf 100644
--- a/src/components/Render.hpp
+++ b/src/components/Render.hpp
@@ -41,9 +41,9 @@ public:
if (tab["visible"].get_type() == sol::type::boolean)
this->visible = tab["visible"];
if (tab["texture"].get_type() == sol::type::string)
- this->texture = Texture(static_cast<std::string>(tab["texture"]));
+ this->texture = Texture(tab.get<std::string>("texture"));
if (tab["normal"].get_type() == sol::type::string)
- this->normal = Texture(static_cast<std::string>(tab["normal"]));
+ this->normal = Texture(tab.get<std::string>("normal"));
if (tab["flipx"].get_type() == sol::type::boolean)
this->flipX = tab["flipx"];
} else {