d_resorce debug (#3105)

This commit is contained in:
Jcw87
2026-02-20 03:05:23 -08:00
committed by GitHub
parent 803bc041c7
commit 2113d9044b
21 changed files with 416 additions and 361 deletions
+2 -2
View File
@@ -337,10 +337,10 @@ JKRFileFinder* JKRArchive::getFirstFile(const char* path) const {
return NULL;
}
u32 JKRArchive::getFileAttribute(u32 index) const {
u8 JKRArchive::getFileAttribute(u32 index) const {
SDIFileEntry* fileEntry = findIdxResource(index);
if (fileEntry) {
return u8(fileEntry->type_flags_and_name_offset >> 24);
return fileEntry->type_flags_and_name_offset >> 24;
}
return 0;