Skip to content

Commit

Permalink
remove unused var
Browse files Browse the repository at this point in the history
  • Loading branch information
headshot2017 committed Jun 23, 2024
1 parent a921d21 commit 6020261
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion arm9/src/zdrv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ void zmap_header_type::Scale(float scaleX, float scaleY)
newStride = (newStride >= 0) ? newStride : pad(newWidht);

auto newZPtr1 = new unsigned short[newHeight * newStride];
for (int dst = 0, y = 0; y < Height; y++)
for (int y = 0; y < Height; y++)
{
for (int x = 0; x < Width; x++)
{
Expand Down

0 comments on commit 6020261

Please sign in to comment.