From ad56c03d47757984c10bc131f63fa6f3dee7bc63 Mon Sep 17 00:00:00 2001 From: archshift Date: Thu, 30 Oct 2014 00:42:44 -0700 Subject: [PATCH] Update README.md --- README.md | 11 ++++++----- source/main.c | 14 +++++++++----- 2 files changed, 15 insertions(+), 10 deletions(-) diff --git a/README.md b/README.md index 31d8e04..d60d10c 100644 --- a/README.md +++ b/README.md @@ -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. diff --git a/source/main.c b/source/main.c index bb7f8ef..c958b44 100644 --- a/source/main.c +++ b/source/main.c @@ -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); }