Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed compiler warnings
Browse files Browse the repository at this point in the history
Updated Visual C++ 2005 project
  • Loading branch information
slouken committed Jul 23, 2006
1 parent b649894 commit 5c3bace
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 3 deletions.
Binary file modified VisualC.zip
Binary file not shown.
2 changes: 0 additions & 2 deletions src/video/SDL_renderer_sw.c
Expand Up @@ -408,8 +408,6 @@ SW_RenderFill(SDL_Renderer * renderer, const SDL_Rect * rect, Uint32 color)
{
SW_RenderData *data = (SW_RenderData *) renderer->driverdata;
Uint8 r, g, b, a;
void *pixels;
int pitch;
SDL_Rect real_rect;
int status;

Expand Down
2 changes: 1 addition & 1 deletion src/video/SDL_video.c
Expand Up @@ -2288,7 +2288,7 @@ SDL_GL_SwapWindow(SDL_WindowID windowID)
SDL_SetError("The specified window isn't an OpenGL window");
return;
}
return _this->GL_SwapWindow(_this, window);
_this->GL_SwapWindow(_this, window);
}

void
Expand Down

0 comments on commit 5c3bace

Please sign in to comment.