mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-14 18:58:29 +12:00
Fixes for titles in NUS format
Symlinks were not handled correctly
This commit is contained in:
parent
29c823fa1f
commit
db53f3b980
5 changed files with 28 additions and 17 deletions
|
@ -136,8 +136,8 @@ private:
|
|||
// this is to stay consistent with previous Cemu versions which did not support NUS format at all
|
||||
TitleInfo::TitleDataFormat currentFormat = currentTitle.GetFormat();
|
||||
TitleInfo::TitleDataFormat newFormat = newTitle.GetFormat();
|
||||
if (currentFormat != newFormat && currentFormat == TitleInfo::TitleDataFormat::NUS)
|
||||
return true;
|
||||
if (currentFormat != TitleInfo::TitleDataFormat::NUS && newFormat == TitleInfo::TitleDataFormat::NUS)
|
||||
return false;
|
||||
return true;
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue