Use R_FAILED for the romfsInit rc check.

This commit is contained in:
yellows8 2018-04-21 01:57:28 -04:00
parent 305c6f325e
commit 0ff790f032

View File

@ -34,7 +34,7 @@ int main(int argc, char **argv)
consoleInit(NULL); consoleInit(NULL);
Result rc = romfsInit(); Result rc = romfsInit();
if (rc) if (R_FAILED(rc))
printf("romfsInit: %08X\n", rc); printf("romfsInit: %08X\n", rc);
else else
{ {