Skip to content

Commit

Permalink
Fix naming
Browse files Browse the repository at this point in the history
  • Loading branch information
eschan145 committed Dec 28, 2024
1 parent e6bdcbe commit cb4bd31
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/asteroids.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -149,14 +149,14 @@ LRESULT CALLBACK Asteroids::TrayWindowProc(

Rect rectangle;
rectangle.width = client_rect.right - client_rect.left
- 2 * Asteroids::padding;
- 2 * Asteroids::DK_PADDING;
rectangle.height = client_rect.bottom - client_rect.top
- 2 * Asteroids::padding;
- 2 * Asteroids::DK_PADDING;

rectangle.x = client_rect.left +
Asteroids::padding; // Actually the left
Asteroids::DK_PADDING; // Actually the left
rectangle.y = client_rect.top +
Asteroids::padding; // Actually the top
Asteroids::DK_PADDING; // Actually the top

HBRUSH hBrush = CreateSolidBrush(RGB(255, 255, 255));

Expand Down

0 comments on commit cb4bd31

Please sign in to comment.