Remove some extra semicolons

This commit is contained in:
Petar Popovic
2024-09-26 17:08:44 +02:00
committed by Ozkan Sezer
parent 345cae361d
commit 457d0edeaf
5 changed files with 7 additions and 7 deletions

View File

@@ -5048,13 +5048,13 @@ bool SDL_GL_GetSwapInterval(int *interval)
*interval = 0;
if (!_this) {
return SDL_SetError("no video driver");;
return SDL_SetError("no video driver");
} else if (SDL_GL_GetCurrentContext() == NULL) {
return SDL_SetError("no current context");;
return SDL_SetError("no current context");
} else if (_this->GL_GetSwapInterval) {
return _this->GL_GetSwapInterval(_this, interval);
} else {
return SDL_SetError("not implemented");;
return SDL_SetError("not implemented");
}
}