Minor cleanups and fixes. sceJpeg will not work without HLE, so removed from disable-list.

This commit is contained in:
Henrik Rydgård
2025-04-03 18:15:56 +02:00
parent 5a6c9051f2
commit 62cd4bbefc
5 changed files with 11 additions and 9 deletions
+2 -3
View File
@@ -124,9 +124,8 @@ enum class DisableHLEFlags : int {
scePsmfPlayer = (1 << 3),
sceMpeg = (1 << 4),
sceMp3 = (1 << 5),
sceJpeg = (1 << 6),
sceParseHttp = (1 << 7),
Count = 8,
sceParseHttp = (1 << 6),
Count = 7,
// TODO: Some of the networking libraries may be interesting candidates, like HTTP.
};
ENUM_CLASS_BITOPS(DisableHLEFlags);