mirror of
https://github.com/zeldaret/tww.git
synced 2026-07-11 06:34:45 -04:00
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:
@@ -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, ¤t[5], size - 5);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user