diff options
author | pommicket <pommicket@gmail.com> | 2025-08-13 13:45:54 -0400 |
---|---|---|
committer | pommicket <pommicket@gmail.com> | 2025-08-13 13:45:54 -0400 |
commit | 306eff0aaf77d94f70a91d2ba8c2fe0a1046df51 (patch) | |
tree | cc8312c07994d25d9737c21c7fd22063646c46cc /quacker/macondobackend.cpp | |
parent | e43c01bd11560561daa771463c57442c3b8a761d (diff) |
Various code cleanup, fix issues with move box
Diffstat (limited to 'quacker/macondobackend.cpp')
-rw-r--r-- | quacker/macondobackend.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/quacker/macondobackend.cpp b/quacker/macondobackend.cpp index 2712512..b74fcea 100644 --- a/quacker/macondobackend.cpp +++ b/quacker/macondobackend.cpp @@ -1,5 +1,5 @@ -#include "datamanager.h" #include "macondobackend.h" +#include "datamanager.h" #include "quackleio/gcgio.h" #include "game.h" @@ -218,7 +218,7 @@ void MacondoBackend::timer() { if (!moves.empty()) { // at this point the GCG is definitely fully loaded removeTempGCG(); - emit gotSimMoves(&moves); + emit gotSimMoves(moves); } } break; |