65
edits
(add mem mapped struct endianness problem) |
|||
Line 9: | Line 9: | ||
* int32 *gob_curGobStateVarPtr and all gob_*Ptr variables. They all map directly into data, and have to be fixed. | * int32 *gob_curGobStateVarPtr and all gob_*Ptr variables. They all map directly into data, and have to be fixed. | ||
* All structs directly mapped to memory that are not trivially replaced | * All structs directly mapped to memory that are not trivially replaced (such as 'scen_animations'). Currently use (or should use - this is still WIP) READ_LE_* functions to read most member variables which are known to be in LE format and only read from - NOT written to. Later, when the data is hopefully converted to native format during loading, these READ_LE_* calls should obviously go. | ||
Currently use (or should use - this is still WIP) READ_LE_* functions to read most member variables which are known to be in LE format and only read - | |||
Later, when the data is hopefully converted to native format during loading, these READ_LE_* calls should obviously go. | |||
== Showstoppers/Overall bugs == | == Showstoppers/Overall bugs == |
edits