Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Stehfyn committed Oct 17, 2023
1 parent 511e753 commit 30d8060
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,10 @@ BorderlessWindow window; // Instantiate our borderless window
{
ImVec2 pos = window->Pos;
ImVec2 size = window->Size;
RECT rect = { origin.x + pos.x, origin.y + pos.y, origin.x + (pos.x + size.x), origin.y + (pos.y + size.y) };
RECT rect = { origin.x + pos.x,
origin.y + pos.y,
origin.x + (pos.x + size.x),
origin.y + (pos.y + size.y) };
WindowRects.push_back(rect);
}
}
Expand Down

0 comments on commit 30d8060

Please sign in to comment.