|
From: <xer...@us...> - 2026-07-30 02:10:07
|
Revision: 1686
http://sourceforge.net/p/seq/svn/1686
Author: xerxes00
Date: 2026-07-30 02:10:06 +0000 (Thu, 30 Jul 2026)
Log Message:
-----------
EQ Legends: fix reticle freeze - heading is an 11-bit h2048 field
Modified Paths:
--------------
showeq/branches/showeqlegends/src/everquest.h
Modified: showeq/branches/showeqlegends/src/everquest.h
===================================================================
--- showeq/branches/showeqlegends/src/everquest.h 2026-07-30 00:29:19 UTC (rev 1685)
+++ showeq/branches/showeqlegends/src/everquest.h 2026-07-30 02:10:06 UTC (rev 1686)
@@ -2648,7 +2648,8 @@
/*0014*/ uint32_t unknown0014;
/*0018*/ float unknown0018;
/*0022*/ float x;
-/*0026*/ uint16_t heading;
+/*0026*/ uint16_t heading:11; // EQ h2048 facing (low 11 bits)
+ uint16_t unknown0026hi:5; // upper bits carry other state
/*0028*/ uint16_t unknown0028;
/*0030*/ float unknown0030;
/*0034*/ float z;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|