diff options
Diffstat (limited to 'src/osd/modules/render/bgfx/texturemanager.cpp')
-rw-r--r-- | src/osd/modules/render/bgfx/texturemanager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/modules/render/bgfx/texturemanager.cpp b/src/osd/modules/render/bgfx/texturemanager.cpp index 3e404635bab..61be4f8f247 100644 --- a/src/osd/modules/render/bgfx/texturemanager.cpp +++ b/src/osd/modules/render/bgfx/texturemanager.cpp @@ -94,7 +94,7 @@ bgfx::TextureHandle texture_manager::handle(std::string name) handle = (iter->second)->texture(); } - assert(handle.idx != bgfx::invalidHandle); + assert(handle.idx != bgfx::kInvalidHandle); return handle; } |