diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-14 18:19:06 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-14 18:19:06 -0400 |
commit | ba651a82d585c181e9632fadba5bb4d683842d44 (patch) | |
tree | 8b2711866d497dfd471903c603e2f33bd4a41a5a /src/components.cpp | |
parent | a7d7d7e687cde01ed2d2ec2adb6ee5bfff8bbddc (diff) |
better slash, scale fixes
Diffstat (limited to 'src/components.cpp')
-rw-r--r-- | src/components.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components.cpp b/src/components.cpp index a711f45..af746ab 100644 --- a/src/components.cpp +++ b/src/components.cpp @@ -106,7 +106,7 @@ Texture RenderSystem::loadTexture(const std::string& file) void RenderSystem::render(void) { if (!loadTexString.empty()) { - loadTexResult = Texture(loadTexString, true); + loadTexResult = Texture(loadTexString, false); loadTexString.clear(); } |