mirror of
https://gitlab.com/manzerbredes/cgeditor.git
synced 2025-04-06 10:06:27 +02:00
Debug CGEditor
This commit is contained in:
parent
e9bcc710ff
commit
5ceb3eafc4
1 changed files with 9 additions and 2 deletions
|
@ -351,7 +351,14 @@ std::uint32_t MoveTable::DrawVariations(CMI::HalfMove *m, std::uint32_t line,
|
||||||
}
|
}
|
||||||
|
|
||||||
void MoveTable::GetMoveXY(CMI::HalfMove* m, double &X, double &Y){
|
void MoveTable::GetMoveXY(CMI::HalfMove* m, double &X, double &Y){
|
||||||
X=MovesStates.at(m).Bound.x;
|
if(MovesStates.count(m)>0){
|
||||||
Y=MovesStates.at(m).Bound.y;
|
X=MovesStates[m].Bound.x;
|
||||||
|
Y=MovesStates[m].Bound.y;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
// Being predictable:
|
||||||
|
X=0;
|
||||||
|
Y=0;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
} // namespace cgeditor
|
} // namespace cgeditor
|
Loading…
Add table
Reference in a new issue