Skip to content

Commit

Permalink
fix ref bug
Browse files Browse the repository at this point in the history
  • Loading branch information
DubbleClick committed Sep 24, 2024
1 parent 1a6ad97 commit bc7e764
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion GWToolboxdll/Widgets/SkillbarWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -313,7 +313,7 @@ void SkillbarWidget::Draw(IDirect3DDevice9*)
const Skill& skill = m_skills[i];
// NB: Y axis inverted for imgui
const ImVec2& top_left = skill_positions_calculated[i];
const ImVec2& bottom_right = {skill_positions_calculated[i].x + m_skill_width, skill_positions_calculated[i].y + m_skill_height};
const ImVec2 bottom_right = {skill_positions_calculated[i].x + m_skill_width, skill_positions_calculated[i].y + m_skill_height};

// draw overlay
if (display_skill_overlay) {
Expand Down

0 comments on commit bc7e764

Please sign in to comment.