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

Finished the QTM library, Added some text in ctr.c

The QTM (Headtracking) is not tested on real hardware, and doesn't work in citra.
But should work, maybe. Please update your boot.3dsx to use it without errors.
This commit is contained in:
Firew0lf 2015-09-12 00:15:51 +02:00
parent 3f48e6e66e
commit 848fe42096
2 changed files with 75 additions and 7 deletions

View file

@ -13,6 +13,7 @@ void load_ir_lib(lua_State *L);
void load_fs_lib(lua_State *L);
void load_httpc_lib(lua_State *L);
void load_qtm_lib(lua_State *L);
//void load_cam_lib(lua_State *L);
void unload_gfx_lib(lua_State *L);
void unload_hid_lib(lua_State *L);
@ -48,6 +49,7 @@ struct { char *name; void (*load)(lua_State *L); void (*unload)(lua_State *L); }
{ "fs", load_fs_lib, unload_fs_lib },
{ "httpc", load_httpc_lib, unload_httpc_lib },
{ "qtm", load_qtm_lib, NULL },
// { "cam", load_cam_lib, NULL },
{ NULL, NULL }
};