Update README.md

This commit is contained in:
archshift 2014-10-30 00:42:44 -07:00
parent f0d6468017
commit ad56c03d47
2 changed files with 15 additions and 10 deletions

View File

@ -1,8 +1,9 @@
fs-test
=======
# ctru-test
A really shitty homebrew test for the SDMC filesystem.
Adapted from smea's ftpony.
The beginnings of a homebrew test for Citra.
Press A to run, press B to close.
### Thanks to
Smealum, because this program was created using ftpony as a template.

View File

@ -26,7 +26,8 @@ int main()
APP_STATUS status;
while ((status=aptGetStatus()) != APP_EXITING) {
if (status == APP_RUNNING) {
switch (status) {
case APP_RUNNING:
drawFrame();
hidScanInput();
@ -37,13 +38,16 @@ int main()
FSUSER_CreateDirectory(NULL, sdmcArchive, FS_makePath(PATH_CHAR, "/new_dir"))
);
}
}
else if (status == APP_SUSPENDING) {
break;
case APP_SUSPENDING:
aptReturnToMenu();
}
else if (status == APP_SLEEPMODE) {
break;
case APP_SLEEPMODE:
aptWaitStatusEvent();
break;
}
gspWaitForEvent(GSPEVENT_VBlank0, false);
}