mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-22 18:59:59 +08:00
Fix: box drawing comparison.
There was a bug. Converting the bitfield to int using the union wasn't working correctly.
This commit is contained in:
parent
84287eb217
commit
66cdf9b2a5
@ -98,16 +98,21 @@ struct TileEncoding {
|
||||
unsigned int down : 2;
|
||||
unsigned int round : 1;
|
||||
|
||||
// clang-format off
|
||||
bool operator<(const TileEncoding& other) const {
|
||||
union Converter {
|
||||
TileEncoding input;
|
||||
uint16_t output = 0;
|
||||
};
|
||||
Converter a, b;
|
||||
a.input = *this;
|
||||
b.input = other;
|
||||
return a.output < b.output;
|
||||
if (left < other.left) return true;
|
||||
if (left > other.left) return false;
|
||||
if (top < other.top) return true;
|
||||
if (top > other.top) return false;
|
||||
if (right < other.right) return true;
|
||||
if (right > other.right) return false;
|
||||
if (down < other.down) return true;
|
||||
if (down > other.down) return false;
|
||||
if (round < other.round) return true;
|
||||
if (round > other.round) return false;
|
||||
return false;
|
||||
}
|
||||
// clang-format on
|
||||
};
|
||||
|
||||
// clang-format off
|
||||
|
Loading…
Reference in New Issue
Block a user