WTF
diff --git a/src/video/SDL_video.c b/src/video/SDL_video.c
index c3782c0..e262a19 100644
--- a/src/video/SDL_video.c
+++ b/src/video/SDL_video.c
@@ -4024,9 +4024,6 @@ SDL_IsScreenKeyboardShown(SDL_Window *window)
return SDL_FALSE;
}
-#if SDL_VIDEO_DRIVER_VITA
-#include "vita/SDL_vitamessagebox.h"
-#endif
#if SDL_VIDEO_DRIVER_ANDROID
#include "android/SDL_androidmessagebox.h"
#endif
@@ -4110,12 +4107,6 @@ SDL_ShowMessageBox(const SDL_MessageBoxData *messageboxdata, int *buttonid)
}
/* It's completely fine to call this function before video is initialized */
-#if SDL_VIDEO_DRIVER_VITA
- if (retval == -1 &&
- VITA_ShowMessageBox(messageboxdata, buttonid) == 0) {
- retval = 0;
- }
-#endif
#if SDL_VIDEO_DRIVER_ANDROID
if (retval == -1 &&
Android_ShowMessageBox(messageboxdata, buttonid) == 0) {