Fix error handling in X11_SetWindowTitle

X11_XChangeProperty return 1 on success.
This commit is contained in:
Mathieu Eyraud 2021-07-25 18:44:33 +02:00 committed by Sam Lantinga
parent bc3b98f3ed
commit 8e604a5f12
1 changed files with 1 additions and 1 deletions

View File

@ -734,7 +734,7 @@ X11_SetWindowTitle(_THIS, SDL_Window * window)
status = X11_XChangeProperty(display, data->xwindow, _NET_WM_NAME, UTF8_STRING, 8, 0, (const unsigned char *) title, strlen(title));
if (status != Success) {
if (status != 1) {
char *x11_error = NULL;
char x11_error_locale[256];
if (X11_XGetErrorText(display, status, x11_error_locale, sizeof(x11_error_locale)) == Success)