2017-09-29 07:45:56 +00:00
|
|
|
/* This file is part of Checkpoint
|
|
|
|
> Copyright (C) 2017 Bernardo Giordano
|
|
|
|
>
|
|
|
|
> This program is free software: you can redistribute it and/or modify
|
|
|
|
> it under the terms of the GNU General Public License as published by
|
|
|
|
> the Free Software Foundation, either version 3 of the License, or
|
|
|
|
> (at your option) any later version.
|
|
|
|
>
|
|
|
|
> This program is distributed in the hope that it will be useful,
|
|
|
|
> but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
> MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
> GNU General Public License for more details.
|
|
|
|
>
|
|
|
|
> You should have received a copy of the GNU General Public License
|
|
|
|
> along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
> See LICENSE for information.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "util.h"
|
|
|
|
|
|
|
|
void servicesExit(void)
|
|
|
|
{
|
|
|
|
archiveExit();
|
|
|
|
amExit();
|
|
|
|
srvExit();
|
|
|
|
hidExit();
|
|
|
|
pp2d_exit();
|
|
|
|
sdmcExit();
|
2017-10-03 12:16:10 +00:00
|
|
|
romfsExit();
|
2017-09-29 07:45:56 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void servicesInit(void)
|
|
|
|
{
|
|
|
|
Result res = 0;
|
2017-10-03 12:16:10 +00:00
|
|
|
romfsInit();
|
2017-09-29 07:45:56 +00:00
|
|
|
sdmcInit();
|
|
|
|
pp2d_init();
|
|
|
|
hidInit();
|
|
|
|
srvInit();
|
|
|
|
amInit();
|
|
|
|
|
|
|
|
res = archiveInit();
|
|
|
|
if (R_FAILED(res))
|
|
|
|
{
|
|
|
|
createError(res, "SDMC archive init failed.");
|
|
|
|
}
|
|
|
|
|
2017-10-01 20:27:10 +00:00
|
|
|
mkdir("sdmc:/3ds", 777);
|
|
|
|
mkdir("sdmc:/3ds/Checkpoint", 777);
|
|
|
|
mkdir("sdmc:/3ds/Checkpoint/saves", 777);
|
|
|
|
mkdir("sdmc:/3ds/Checkpoint/extdata", 777);
|
2017-09-29 07:45:56 +00:00
|
|
|
|
|
|
|
pp2d_set_screen_color(GFX_TOP, COLOR_BACKGROUND);
|
|
|
|
pp2d_set_screen_color(GFX_BOTTOM, COLOR_BACKGROUND);
|
2017-10-03 12:16:10 +00:00
|
|
|
pp2d_load_texture_png(TEXTURE_CHECKBOX, "romfs:/checkbox.png");
|
|
|
|
pp2d_load_texture_png(TEXTURE_CHECKPOINT, "romfs:/checkpoint.png");
|
2017-09-29 07:45:56 +00:00
|
|
|
}
|