Merge pull request #19 from FenrisulfrX/compilation-fix

Fix compilation with latest ctrulib
This commit is contained in:
bunnei 2015-01-24 00:26:29 -05:00
commit d9472787cd

View File

@ -13,12 +13,7 @@ static TestCaller tests[] = {
int main(int argc, char** argv)
{
srvInit();
aptInit();
hidInit(NULL);
gfxInit();
gfxSet3D(false);
fsInit();
gfxInitDefault();
InitOutput();
ClearScreens();
@ -49,11 +44,8 @@ int main(int argc, char** argv)
ClearScreens();
DeinitOutput();
fsExit();
gfxExit();
hidExit();
aptExit();
srvExit();
DeinitOutput();
return 0;
}