From 8e3b6243fd174e8fd4fd925f2926406dab1fee8d Mon Sep 17 00:00:00 2001
From: Wouter Wijsman <[EMAIL REDACTED]>
Date: Sun, 5 Jul 2026 20:19:45 +0200
Subject: [PATCH] PSP: Remove log statement
---
src/video/psp/SDL_pspvideo.c | 1 -
1 file changed, 1 deletion(-)
diff --git a/src/video/psp/SDL_pspvideo.c b/src/video/psp/SDL_pspvideo.c
index 071aab8be5251..8c95fbddeed74 100644
--- a/src/video/psp/SDL_pspvideo.c
+++ b/src/video/psp/SDL_pspvideo.c
@@ -399,7 +399,6 @@ void PSP_ShowScreenKeyboard(SDL_VideoDevice *_this, SDL_Window *window, SDL_Prop
int input_text_length = 128;
void *received_text = SDL_calloc(input_text_length, sizeof(Uint16));
if (!received_text) {
- SDL_Log("Error: Failed to allocate buffer for receiving osk input");
return;
}
void *received_text_start = received_text;