Fix comparison operators
This commit is contained in:
parent
db3c83fedc
commit
4f5892d86d
|
@ -403,7 +403,7 @@ void GameListWorker::AddFstEntriesToGameList(const std::string& dir_path, unsign
|
|||
std::vector<u8> original_smdh;
|
||||
loader->ReadIcon(original_smdh);
|
||||
|
||||
if (0x4000000000000 > program_id && program_id > 0x40000FFFFFFFF)
|
||||
if (program_id >= 0x4000000000000 && program_id <= 0x40000FFFFFFFF)
|
||||
return original_smdh;
|
||||
|
||||
std::string update_path = Service::AM::GetTitleContentPath(
|
||||
|
|
Reference in New Issue