Skip to content

Commit

Permalink
Fix romfsInit result handling
Browse files Browse the repository at this point in the history
  • Loading branch information
clamintus committed Jan 21, 2022
1 parent 43f3d68 commit 8c19b43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/switch_mitm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ void switch_init()

Result rc = romfsInit();
if ( R_FAILED( rc ) )
fprintf( stderr, "romfsInit: %s\n", rc );
fprintf( stderr, "romfsInit: %08X\n", rc );
}

int switch_getinput( void* data )
Expand Down

0 comments on commit 8c19b43

Please sign in to comment.