Fixed iOS build

This commit is contained in:
Sam Lantinga
2025-09-22 11:27:07 -07:00
parent 137b0b2bee
commit cece47c64d

View File

@@ -38,7 +38,7 @@ bool UIKit_SetClipboardText(SDL_VideoDevice *_this, const char *text)
if (text && *text) {
[UIPasteboard generalPasteboard].string = @(text);
} else {
[UIPasteboard generalPasteboard].items = nil;
[UIPasteboard generalPasteboard].string = nil;
}
data.setting_clipboard = false;
return true;