Skip to content

Commit d1de871

Browse files
committed
Add missing parameter to function call.
1 parent 10f979d commit d1de871

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

CompassBubble.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,9 +143,9 @@ private Texture2D GenerateTexture()
143143
depthStencilState: DepthStencilState.Default,
144144
rasterizerState: RasterizerState.CullNone);
145145

146-
Utility.DrawUiSprite(spriteBatch, backgroundTexture, offset, 0f);
146+
Utility.DrawUiSprite(spriteBatch, backgroundTexture, offset, 0.75f, 0f);
147147
Utility.DrawFarmerHead(spriteBatch, farmer, offset, 0.75f);
148-
Utility.DrawUiSprite(spriteBatch, foregroundTexture, offset, 0f);
148+
Utility.DrawUiSprite(spriteBatch, foregroundTexture, offset, 0.75f, 0f);
149149

150150
spriteBatch.End();
151151
}

0 commit comments

Comments
 (0)