Skip to content

Commit

Permalink
Fix bad else usage
Browse files Browse the repository at this point in the history
  • Loading branch information
Naim2000 committed Sep 17, 2024
1 parent 16fa312 commit 6b46b02
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions romfs/finalize/finalize.gm9
Original file line number Diff line number Diff line change
Expand Up @@ -17,16 +17,19 @@ set SEED ""

if find -s 1:/rw/sys/SecureInfo_A NULL
elif find -s 1:/rw/sys/SecureInfo_B NULL
else set MISSINGESSENTIAL "$[MISSINGESSENTIAL]SecureInfo\n" # Does GodMode9 support \t
else
set MISSINGESSENTIAL "$[MISSINGESSENTIAL]SecureInfo\n" # Does GodMode9 support \t
end

if find -s 1:/rw/sys/LocalFriendCodeSeed_B NULL
elif find -s 1:/rw/sys/LocalFriendCodeSeed_A NULL
else set MISSINGESSENTIAL "$[MISSINGESSENTIAL]LocalFriendCodeSeed\n"
else
set MISSINGESSENTIAL "$[MISSINGESSENTIAL]LocalFriendCodeSeed\n"
end

if find -s 1:/private/movable.sed SEED
else set MISSINGESSENTIAL "$[MISSINGESSENTIAL]movable.sed\n"
else
set MISSINGESSENTIAL "$[MISSINGESSENTIAL]movable.sed\n"
end

# Check for missing essential.exefs
Expand Down

0 comments on commit 6b46b02

Please sign in to comment.