Demo work (#786)

* Demo work

* Fix PAL

* Fix d_door weak func order and link it

* Fix d_door for demo

* JKernel OK on demo + misc

* tag_attention 100% on demo

* More demo work and fix some retail fakematches
This commit is contained in:
LagoLunatic
2025-06-04 16:50:49 -04:00
committed by GitHub
parent 08571c4865
commit e24cbed367
69 changed files with 1800 additions and 479 deletions
+4 -2
View File
@@ -142,8 +142,10 @@ void TProcessor::on_tag_() {
size = current[1];
setCurrent_((const char*)current + size);
u32 tag = (current[2] << 16 | (u8)current[3] << 8);
tag |= current[4];
u32 tag = 0;
tag |= 0xFF0000 & (current[2] << 16);
tag |= 0x00FF00 & (current[3] << 8);
tag |= 0x0000FF & (current[4] << 0);
on_tag(tag, &current[5], size - 5);
}