mirror of
https://gitlab.com/manzerbredes/ochess.git
synced 2025-04-06 01:56:28 +02:00
Debug live engine dialog
This commit is contained in:
parent
973104f58c
commit
9cba705e66
1 changed files with 6 additions and 3 deletions
|
@ -63,9 +63,12 @@ void LiveEngineDialog::OnClose(wxCloseEvent &e) {
|
|||
}
|
||||
|
||||
void LiveEngineDialog::SetFEN(std::string fen) {
|
||||
StopEngine();
|
||||
engine->position(fen);
|
||||
StartEngine();
|
||||
if (timer.IsRunning()) {
|
||||
StopEngine();
|
||||
StartEngine();
|
||||
} else {
|
||||
engine->position(fen);
|
||||
}
|
||||
}
|
||||
|
||||
void LiveEngineDialog::TogglePauseEngine(wxCommandEvent &event) {
|
||||
|
|
Loading…
Add table
Reference in a new issue