SDL_SYS_RenamePath(): Fix error message.

This commit is contained in:
Petar Popovic 2024-10-28 00:47:36 +01:00 committed by Sam Lantinga
parent 3922bcec95
commit a10578acbd

View File

@ -74,7 +74,7 @@ bool SDL_SYS_RemovePath(const char *path)
bool SDL_SYS_RenamePath(const char *oldpath, const char *newpath)
{
if (rename(oldpath, newpath) < 0) {
return SDL_SetError("Can't remove path: %s", strerror(errno));
return SDL_SetError("Can't rename path: %s", strerror(errno));
}
return true;
}