Fixed Visual Studio warning 4701

This commit is contained in:
Sam Lantinga
2023-03-30 14:02:02 -07:00
parent 28d687aae0
commit b078122c53
4 changed files with 6 additions and 10 deletions

View File

@@ -3680,6 +3680,8 @@ static int SDLCALL SDL_SW_RenderGeometryRaw(SDL_Renderer *renderer,
s.y = uv0_[1] * texh;
s.w = uv1_[0] * texw - s.x;
s.h = uv1_[1] * texh - s.y;
} else {
s.x = s.y = s.w = s.h = 0;
}
d.x = xy0_[0];