diff options
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 908be46a..7cc83be5 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -439,7 +439,9 @@ int main(int argc, char *argv[]) graphics->updateScreen(); break; case UPDATE: - updateData(); + UpdaterWindow *uw = new UpdaterWindow(); + uw->updateData(); + delete uw; break; default: state = EXIT; |