1
0
Fork 0
mirror of https://github.com/ctruLua/ctruLua.git synced 2025-10-27 16:39:29 +00:00

Added fs lib; fs.list working. Added a simple shell.

This commit is contained in:
Reuh 2015-08-20 21:12:15 +02:00
parent 551e8e121e
commit 85d8f60f94
5 changed files with 211 additions and 65 deletions

View file

@ -10,6 +10,7 @@
int load_ctr_lib(lua_State *L);
void unload_font_lib();
void unload_fs_lib();
bool gfxinit = false;
@ -64,8 +65,9 @@ int main() {
// Unload Lua
lua_close(L);
// Unload current font
// Unload libs
unload_font_lib();
unload_fs_lib();
// Disable accel/gyro
HIDUSER_DisableAccelerometer();