diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-08 20:44:00 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-03-08 20:44:00 -0500 |
commit | 4e52a7ccc57e9f7d62de69c1e2c66001b040f3af (patch) | |
tree | 95e16c83babbc8932e14991615a9aef40c0fe1dd /include | |
parent | 8194e952b3e7fd5c333f117416f0ce579e0a1de0 (diff) |
fixes n stuff
Diffstat (limited to 'include')
-rw-r--r-- | include/components.hpp | 4 | ||||
-rw-r--r-- | include/texture.hpp | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/include/components.hpp b/include/components.hpp index 0fb8ec6..2215a64 100644 --- a/include/components.hpp +++ b/include/components.hpp @@ -257,12 +257,12 @@ struct Solid : public Component { }; struct SpriteData { + SpriteData(void) = default; SpriteData(std::string path, vec2 off): offset(off) { tex = Texture(path); size = tex.getDim(); - offset = vec2(0.0f, 0.0f); size_tex = vec2(1.0, 1.0); @@ -448,7 +448,7 @@ struct Limb { } float updateRate; /**< How often we will change each frame. */ - float updateCurrent; /**< How much has been updated in the current frame. */ + float updateCurrent = 0; /**< How much has been updated in the current frame. */ unsigned int updateType; /**< What the updateRate will base it's updates off of. ie: Movement, attacking, jumping. */ unsigned int limbID; /**< The id of the limb we will be updating */ diff --git a/include/texture.hpp b/include/texture.hpp index 25f73a5..0684cb7 100644 --- a/include/texture.hpp +++ b/include/texture.hpp @@ -28,7 +28,7 @@ class Texture { protected: std::string name; /**< The name (path) of the loaded file. */ - GLuint tex; /**< The GLuint for the loaded texture. */ + GLuint tex = 0; /**< The GLuint for the loaded texture. */ vec2 dim; /**< The dimensions of the loaded texture. */ public: |