WATCHMAKER: Call the old Watchmaker main() from run()

This commit is contained in:
Einar Johan Trøan Sømåen 2022-09-11 10:05:44 +02:00 committed by Eugene Sandulenko
parent 7a8b38d118
commit 93511e6ef1

View File

@ -32,8 +32,11 @@ WatchmakerGame::~WatchmakerGame() {
//_console is deleted by Engine
}
// TODO: We should be moving most of the WMakerMain() stuff here:
int WMakerMain();
Common::Error WatchmakerGame::run() {
error("TODO: Implement engine");
WMakerMain();
return Common::kNoError;
}