Engine::runDialog() returns a value now

svn-id: r33672
This commit is contained in:
Christopher Page 2008-08-06 21:47:20 +00:00
parent 78159c34a1
commit f41471d34b

View File

@ -228,11 +228,11 @@ int Engine::runDialog(Dialog &dialog) {
pauseEngine(true);
dialog.runModal();
int result = dialog.runModal();
pauseEngine(false);
return 0;
return result;
}
void Engine::syncSoundSettings() {