aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--gui/browser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/gui/browser.cpp b/gui/browser.cpp
index 40d5121458..536cccdb4e 100644
--- a/gui/browser.cpp
+++ b/gui/browser.cpp
@@ -66,7 +66,7 @@ int BrowserDialog::runModal() {
g_system->setFeatureState(OSystem::kFeatureFullscreenMode, false);
// Temporarily show the real mouse
- ShowCursor();
+ CGDisplayShowCursor(kCGDirectMainDisplay);
err = NavGetDefaultDialogCreationOptions(&options);
assert(err == noErr);
@@ -85,7 +85,7 @@ int BrowserDialog::runModal() {
err = NavDialogRun(dialogRef);
assert(err == noErr);
- HideCursor();
+ CGDisplayHideCursor(kCGDirectMainDisplay);
result = NavDialogGetUserAction(dialogRef);