You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
237 B
15 lines
237 B
|
6 years ago
|
#include <stdlib.h>
|
||
|
|
#include <3ds.h>
|
||
|
|
#include "platform/ctr/system.h"
|
||
|
|
|
||
|
|
void ctr_sys_init()
|
||
|
|
{
|
||
|
|
bool isN3DS;
|
||
|
|
|
||
|
|
APT_CheckNew3DS(&isN3DS);
|
||
|
|
if(isN3DS)
|
||
|
|
osSetSpeedupEnable(true);
|
||
|
|
|
||
|
|
romfsInit();
|
||
|
|
atexit([]() { romfsExit(); });
|
||
|
|
}
|