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

Added ctr.gfx.text and the Bitsream Vera font

This commit is contained in:
Reuh 2015-08-19 14:32:53 +02:00
parent 2dcb9c6aa0
commit 7edb1e2f7b
19 changed files with 385 additions and 4 deletions

View file

@ -47,11 +47,13 @@ int main() {
// Do the actual thing
if(luaL_dofile(L, BOOT_FILE)) error("Can open "BOOT_FILE);
// Un-init (?)
sftd_fini();
sf2d_fini();
// Disable needed things
// Disable accel/gyro
HIDUSER_DisableAccelerometer();
HIDUSER_DisableGyroscope();
// Uninit GFX
sftd_fini();
sf2d_fini();
return 0;
}