Skip to content

Commit

Permalink
Update Source/engine/render/scrollrt.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: qndel <[email protected]>
  • Loading branch information
AJenbo and qndel authored Sep 15, 2024
1 parent 4fc21af commit 15c83c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/engine/render/scrollrt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1292,7 +1292,7 @@ void DoBlitScreen(Rectangle area)
const Surface &out = GlobalBackBuffer();
const uint8_t debugColor = PAL8_RED;
DrawHorizontalLine(out, area.position, area.size.width, debugColor);
DrawHorizontalLine(out, area.position + Displacment { 0, area.size.height - 1 }, area.size.width, debugColor);
DrawHorizontalLine(out, area.position + Displacement { 0, area.size.height - 1 }, area.size.width, debugColor);
DrawVerticalLine(out, area.position, area.size.height, debugColor);
DrawVerticalLine(out, area.position + Displacement { area.size.width - 1, 0 }, area.size.height, debugColor);
#endif
Expand Down

0 comments on commit 15c83c0

Please sign in to comment.