diff options
Diffstat (limited to 'in_practice/breakout/texture.c')
-rw-r--r-- | in_practice/breakout/texture.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/in_practice/breakout/texture.c b/in_practice/breakout/texture.c index ac672f3..c44cc4b 100644 --- a/in_practice/breakout/texture.c +++ b/in_practice/breakout/texture.c @@ -27,7 +27,7 @@ gl_texture_t load_texture(const char *dir, const char *filename, const char *nam info("texture with name \"%s\" already exist", name); return texture; } - texture = (gl_texture_t)DEFAULT_TEXTURE; + texture = (gl_texture_t)default_texture; texture.name = name; if (alpha) { texture.internal_format = GL_RGBA; |