mirror of
https://github.com/Lime3DS/Lime3DS.git
synced 2024-11-02 00:15:06 +01:00
ncch_container: Fix code.bin replacement
Currently, having a replacement code.bin causes Citra to crash as it is trying to load icon data from code.bin because of a typo. This commit fixes that typo.
This commit is contained in:
parent
0b4be6e53a
commit
70fe0d22de
@ -559,7 +559,7 @@ Loader::ResultStatus NCCHContainer::LoadOverrideExeFSSection(const char* name,
|
||||
if (!strcmp(name, ".code"))
|
||||
override_name = "code.bin";
|
||||
else if (!strcmp(name, "icon"))
|
||||
override_name = "code.bin";
|
||||
override_name = "icon.bin";
|
||||
else if (!strcmp(name, "banner"))
|
||||
override_name = "banner.bnr";
|
||||
else if (!strcmp(name, "logo"))
|
||||
|
Loading…
Reference in New Issue
Block a user