We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06006dc commit bdd5fb8Copy full SHA for bdd5fb8
src/osd/sdl3/sdlmain.cpp
@@ -80,10 +80,15 @@ int main(int argc, char** argv)
80
diagnostics_module::get_instance()->init_crash_diagnostics();
81
82
#if defined(SDLMAME_ANDROID)
83
- /* Enable standard application logging */
+ // Enable standard application logging
84
SDL_SetLogPriority(SDL_LOG_CATEGORY_APPLICATION, SDL_LOG_PRIORITY_VERBOSE);
85
#endif
86
87
+#if defined(SDLMAME_MACOSX)
88
+ // disable the popup accents menu on macOS
89
+ SDL_SetHint(SDL_HINT_MAC_PRESS_AND_HOLD, 0);
90
+#endif
91
+
92
// FIXME: this should be done differently
93
94
#ifdef SDLMAME_UNIX
0 commit comments