diff options
author | rubidium <rubidium@openttd.org> | 2006-09-04 21:47:46 +0000 |
---|---|---|
committer | rubidium <rubidium@openttd.org> | 2006-09-04 21:47:46 +0000 |
commit | 973064a2bdb588d8051bbd4a6706e539a1ed4d7d (patch) | |
tree | e9fd8c2fcb077640c223827d62aeec1bd9058cc2 /video | |
parent | 21ac20aeca92c76ba3521eda4dec316eee098974 (diff) | |
download | openttd-973064a2bdb588d8051bbd4a6706e539a1ed4d7d.tar.xz |
(svn r6385) -Fix (r6380): one instance of QZ_AskQuit was left out in the conversion to HandleExitGameRequest.
Diffstat (limited to 'video')
-rw-r--r-- | video/cocoa_v.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/video/cocoa_v.m b/video/cocoa_v.m index e8792a915..e55e40b14 100644 --- a/video/cocoa_v.m +++ b/video/cocoa_v.m @@ -1824,7 +1824,7 @@ static void QZ_HideMouse(void) - (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication*) sender { - QZ_AskQuit(); + HandleExitGameRequest(); return NSTerminateCancel; // NSTerminateLater ? } |