Skip to content

Commit

Permalink
Improved CCLCC wait icon position
Browse files Browse the repository at this point in the history
  • Loading branch information
PringlesGang committed Oct 8, 2024
1 parent dfaff38 commit 9e768cd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion profiles/cclcc/dialogue.lua
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ root.Dialogue = {
WaitIconCurrentType = WaitIconType.SpriteAnimFixed,
WaitIconSpriteAnim = "WaitIconSpriteAnim",
WaitIconAnimationDuration = 0.7,
WaitIconOffset = { X = 1624, Y = 955 },
WaitIconOffset = { X = 1595, Y = 895 },
WaitIconFixedSpriteId = 6,
AutoIconCurrentType = AutoIconType.SpriteAnimFixed,
AutoIconSpriteAnim = "AutoIconSpriteAnim",
Expand Down
2 changes: 1 addition & 1 deletion src/hud/waiticondisplay.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ static void RenderSpriteAnimFixed(glm::vec4 opacityTint) {
if (FixedSpriteAnim.Progress == 0.0f) return;

Renderer->DrawSprite(FixedSpriteAnim.CurrentSprite(),
glm::vec2(WaitIconOffset.x - 50, WaitIconOffset.y - 50),
glm::vec2(WaitIconOffset.x, WaitIconOffset.y),
opacityTint);
return;
}
Expand Down

0 comments on commit 9e768cd

Please sign in to comment.