Remove newlines from error messages

This commit is contained in:
Petar Popovic 2025-01-23 19:28:51 +01:00 committed by Sam Lantinga
parent d0ae093681
commit a336b62d8b
14 changed files with 26 additions and 26 deletions
src/render/opengl

View file

@ -1132,7 +1132,7 @@ static bool SetTextureAddressMode(GL_RenderData *data, GLenum textype, SDL_Textu
data->glTexParameteri(textype, GL_TEXTURE_WRAP_T, GL_REPEAT);
break;
default:
return SDL_SetError("Unknown texture address mode: %d\n", addressMode);
return SDL_SetError("Unknown texture address mode: %d", addressMode);
}
return true;
}