Compare commits
1 Commits
bf5be00c12
...
release-d2
Author | SHA1 | Date | |
---|---|---|---|
a863bfc181 |
@ -11,7 +11,7 @@ target_link_libraries(
|
|||||||
|
|
||||||
target_compile_definitions(
|
target_compile_definitions(
|
||||||
NostalgiaStudio PUBLIC
|
NostalgiaStudio PUBLIC
|
||||||
OLYMPIC_APP_VERSION="dev build"
|
OLYMPIC_APP_VERSION="d2024.12.0"
|
||||||
)
|
)
|
||||||
|
|
||||||
install(
|
install(
|
||||||
|
@ -126,12 +126,12 @@ class SelectionTracker {
|
|||||||
constexpr Selection selection() const noexcept {
|
constexpr Selection selection() const noexcept {
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
ox::max(0, ox::min(m_pointA.x, m_pointB.x)),
|
ox::min(m_pointA.x, m_pointB.x),
|
||||||
ox::max(0, ox::min(m_pointA.y, m_pointB.y)),
|
ox::min(m_pointA.y, m_pointB.y),
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
ox::max(0, ox::max(m_pointA.x, m_pointB.x)),
|
ox::max(m_pointA.x, m_pointB.x),
|
||||||
ox::max(0, ox::max(m_pointA.y, m_pointB.y)),
|
ox::max(m_pointA.y, m_pointB.y),
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user