Skip to content

Commit

Permalink
fix unused param
Browse files Browse the repository at this point in the history
  • Loading branch information
direwolf420 committed Apr 17, 2022
1 parent 03d08d7 commit 3e6298e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Effects/ShaderManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public static void StartEffectOnSpriteBatch(SpriteBatch spriteBatch, Effect effe

public static void DrawEmptyCanvasToScreen(SpriteBatch spriteBatch)
{
Main.spriteBatch.Draw(TextureAssets.MagicPixel.Value, new Rectangle(0, 0, Main.screenWidth, Main.screenHeight), Color.Transparent);
spriteBatch.Draw(TextureAssets.MagicPixel.Value, new Rectangle(0, 0, Main.screenWidth, Main.screenHeight), Color.Transparent);
}

public static void RestoreVanillaSpriteBatchSettings(SpriteBatch spriteBatch)
Expand Down

0 comments on commit 3e6298e

Please sign in to comment.