diff options
| -rw-r--r-- | vendor/nanovg/gl/gl.odin | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/nanovg/gl/gl.odin b/vendor/nanovg/gl/gl.odin index fb1c063f7..630e36dd4 100644 --- a/vendor/nanovg/gl/gl.odin +++ b/vendor/nanovg/gl/gl.odin @@ -415,7 +415,7 @@ __renderCreateTexture :: proc( // No mips. if .GENERATE_MIPMAPS in imageFlags { - log.errorf("Mip-maps is not support for non power-of-two textures (%d x %d)\n", w, h); + log.errorf("Mip-maps is not support for non power-of-two textures (%d x %d)\n", w, h) excl(&imageFlags, ImageFlags { .GENERATE_MIPMAPS }) } } |