From 4e52a7ccc57e9f7d62de69c1e2c66001b040f3af Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Wed, 8 Mar 2017 20:44:00 -0500 Subject: fixes n stuff --- include/components.hpp | 4 ++-- include/texture.hpp | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'include') 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: -- cgit v1.2.3