From f7791709745e6c8b82ff95629f597493aff6613a Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Fri, 17 Nov 2017 23:44:00 +0000 Subject: more tests added --- yage/core/texture.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'yage/core/texture.h') diff --git a/yage/core/texture.h b/yage/core/texture.h index 6f61afd3..85f74647 100644 --- a/yage/core/texture.h +++ b/yage/core/texture.h @@ -19,7 +19,7 @@ struct Texture { int width; int height; - Texture() = default; + Texture() : id(0), width(0), height(0) {} Texture(GLuint id_i, int width_i, int height_i) : id(id_i), width(width_i), height(height_i) -- cgit