diff --git a/icon.png b/icon.png index f035c56..5c7a62b 100644 Binary files a/icon.png and b/icon.png differ diff --git a/sdcard/3ds/ctruLua/tests/httpc.lua b/sdcard/3ds/ctruLua/tests/httpc.lua deleted file mode 100644 index bb1b0a7..0000000 --- a/sdcard/3ds/ctruLua/tests/httpc.lua +++ /dev/null @@ -1,37 +0,0 @@ -local ctr = require("ctr") -local gfx = require("ctr.gfx") -local hid = require("ctr.hid") -local httpc = require("ctr.httpc") - -local err = 0 - ---assert(httpc.init()) - -local context = assert(httpc.context()) - -assert(context:open("http://firew0lf.github.io/")) -assert(context:beginRequest()) - -local data = assert(context:downloadData()) - -while ctr.run() do - hid.read() - keys = hid.keys() - if keys.held.start then break end - if keys.down.b then - assert(context:open("http://firew0lf.github.io/")) - assert(context:beginRequest()) - data = assert(context:downloadData()) - data = (data.."!") - end - - gfx.start(gfx.TOP) - gfx.text(0, 0, data) - gfx.stop() - - gfx.render() -end - - -context:close() ---httpc.shutdown()