Implementing AntSnes with Qt part 3: Running the emulation in worker thread
I decided to build a two threaded application. The main thread is for the UI, and the worker thread if for the emulator. This makes all porting easier in general, since now we can have a UI thread ...