From 01ca3098bd332068d9cb208307cfa1154f8bf331 Mon Sep 17 00:00:00 2001 From: Joel16 Date: Mon, 1 Aug 2022 14:50:57 -0400 Subject: [PATCH] textures: Explictly specify texture namespace in LoadImageBMP --- source/textures.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/textures.cpp b/source/textures.cpp index ed8d8e7..e0169ff 100644 --- a/source/textures.cpp +++ b/source/textures.cpp @@ -191,7 +191,7 @@ namespace Textures { texture.width = bmp.width; texture.height = bmp.height; - bool ret = Create(static_cast(bmp.bitmap), GL_RGBA, texture); + bool ret = Textures::Create(static_cast(bmp.bitmap), GL_RGBA, texture); bmp_finalise(&bmp); return ret; }