From de370beb68362b1ca20cc28a1b996a8a20bcc0fe Mon Sep 17 00:00:00 2001 From: Alex Szpakowski Date: Sun, 26 Jul 2020 16:59:09 -0300 Subject: [PATCH] Remove deprecation notices from newImage for now --- src/modules/graphics/wrap_Graphics.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/modules/graphics/wrap_Graphics.cpp b/src/modules/graphics/wrap_Graphics.cpp index a479411b3..93966a874 100644 --- a/src/modules/graphics/wrap_Graphics.cpp +++ b/src/modules/graphics/wrap_Graphics.cpp @@ -1195,25 +1195,25 @@ int w_newVolumeTexture(lua_State *L) int w_newImage(lua_State *L) { - luax_markdeprecated(L, "love.graphics.newImage", API_FUNCTION, DEPRECATED_RENAMED, "love.graphics.newTexture"); + //luax_markdeprecated(L, "love.graphics.newImage", API_FUNCTION, DEPRECATED_RENAMED, "love.graphics.newTexture"); return w_newTexture(L); } int w_newCubeImage(lua_State *L) { - luax_markdeprecated(L, "love.graphics.newCubeImage", API_FUNCTION, DEPRECATED_RENAMED, "love.graphics.newCubeTexture"); + //luax_markdeprecated(L, "love.graphics.newCubeImage", API_FUNCTION, DEPRECATED_RENAMED, "love.graphics.newCubeTexture"); return w_newCubeTexture(L); } int w_newArrayImage(lua_State *L) { - luax_markdeprecated(L, "love.graphics.newArrayImage", API_FUNCTION, DEPRECATED_RENAMED, "love.graphics.newArrayTexture"); + //luax_markdeprecated(L, "love.graphics.newArrayImage", API_FUNCTION, DEPRECATED_RENAMED, "love.graphics.newArrayTexture"); return w_newArrayTexture(L); } int w_newVolumeImage(lua_State *L) { - luax_markdeprecated(L, "love.graphics.newVolumeImage", API_FUNCTION, DEPRECATED_RENAMED, "love.graphics.newVolumeTexture"); + //luax_markdeprecated(L, "love.graphics.newVolumeImage", API_FUNCTION, DEPRECATED_RENAMED, "love.graphics.newVolumeTexture"); return w_newVolumeTexture(L); }