From 4bc9245810ea72b10e9ab3548de39d7e4b7f44a4 Mon Sep 17 00:00:00 2001 From: FenrisulfrX Date: Wed, 14 Jan 2015 14:57:42 -0200 Subject: [PATCH] Remove unneeded boilerplates --- source/main.cpp | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/source/main.cpp b/source/main.cpp index 38a96b7..89590b4 100644 --- a/source/main.cpp +++ b/source/main.cpp @@ -13,13 +13,7 @@ static TestCaller tests[] = { int main(int argc, char** argv) { - srvInit(); - aptInit(); - hidInit(NULL); gfxInitDefault(); - gfxSet3D(false); - fsInit(); - InitOutput(); ClearScreens(); Print(GFX_TOP, "Press A to begin...\n"); @@ -49,11 +43,7 @@ int main(int argc, char** argv) ClearScreens(); - DeinitOutput(); - fsExit(); gfxExit(); - hidExit(); - aptExit(); - srvExit(); + return 0; }