move done variable into window class

This commit is contained in:
SimoneN64
2023-06-12 17:15:43 +02:00
parent fe43d3bb80
commit 08c9484857
4 changed files with 21 additions and 20 deletions

View File

@@ -21,7 +21,6 @@ struct Core {
bool pause = true;
int cycles = 0;
bool romLoaded = false;
bool done = false;
std::string rom;
Interpreter* cpu = nullptr;
};