Start transferring trackdata to use the seperate values

Finish the conversion
This commit is contained in:
duncanspumpkin 2019-02-19 18:33:42 +00:00
parent dffa56aca2
commit 921062d073
2 changed files with 1751 additions and 1751 deletions

View File

@ -33,12 +33,12 @@ private:
uint8_t _val{0}; uint8_t _val{0};
public: public:
QuarterTile(uint8_t tileQuarter, uint8_t zQuarter) constexpr QuarterTile(uint8_t tileQuarter, uint8_t zQuarter)
: _val(tileQuarter | (zQuarter << 4)) : _val(tileQuarter | (zQuarter << 4))
{ {
} }
constexpr QuarterTile(uint8_t tileAndZQuarter) QuarterTile(uint8_t tileAndZQuarter)
: _val(tileAndZQuarter) : _val(tileAndZQuarter)
{ {
} }

File diff suppressed because it is too large Load Diff