From 390fec2b98b992d3fd73fad1b5167b8adbb5b375 Mon Sep 17 00:00:00 2001 From: Firew0lf Date: Fri, 21 Aug 2015 17:01:25 +0200 Subject: [PATCH] Forgot "PLACE_VRAM" in the example Really, how did that happen ? --- sdcard/3ds/ctruLua/example.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdcard/3ds/ctruLua/example.lua b/sdcard/3ds/ctruLua/example.lua index ddd619d..add31a2 100644 --- a/sdcard/3ds/ctruLua/example.lua +++ b/sdcard/3ds/ctruLua/example.lua @@ -8,7 +8,7 @@ local dMul = 1 local angle = 0 -local texture1 = gfx.texture.load("sdmc:/3ds/ctruLua/icon.png", gfx.texture.TYPE_PNG); +local texture1 = gfx.texture.load("sdmc:/3ds/ctruLua/icon.png", gfx.texture.PLACE_VRAM, gfx.texture.TYPE_PNG); gfx.color.setBackground(gfx.color.RGBA8(200, 200, 200)) gfx.set3D(true)