diff --git a/src/services/impl/sdl_window_service.cpp b/src/services/impl/sdl_window_service.cpp index 79bc1c0..11343f0 100644 --- a/src/services/impl/sdl_window_service.cpp +++ b/src/services/impl/sdl_window_service.cpp @@ -35,11 +35,12 @@ void ThrowSdlErrorIfFailed(bool success, const char* context) { } void ShowErrorDialog(const char* title, const std::string& message) { - SDL_ShowSimpleMessageBox( - SDL_MESSAGEBOX_ERROR, - title, - message.c_str(), - nullptr); + // Disabled for headless environments + // SDL_ShowSimpleMessageBox( + // SDL_MESSAGEBOX_ERROR, + // title, + // message.c_str(), + // nullptr); } } // namespace