Correct fix for https://github.com/ClxS/SMAPI/issues/74
This commit is contained in:
parent
d681cfd54d
commit
950754c253
|
@ -1254,9 +1254,6 @@ namespace StardewModdingAPI.Inheritance
|
|||
GraphicsEvents.InvokeOnPostRenderEvent(null, EventArgs.Empty);
|
||||
spriteBatch.End();
|
||||
|
||||
GraphicsEvents.InvokeDrawTick();
|
||||
GraphicsEvents.InvokeDrawInRenderTargetTick();
|
||||
|
||||
if (!ZoomLevelIsOne)
|
||||
{
|
||||
GraphicsDevice.SetRenderTarget(null);
|
||||
|
@ -1266,6 +1263,9 @@ namespace StardewModdingAPI.Inheritance
|
|||
spriteBatch.End();
|
||||
}
|
||||
|
||||
GraphicsEvents.InvokeDrawTick();
|
||||
GraphicsEvents.InvokeDrawInRenderTargetTick();
|
||||
|
||||
#endregion
|
||||
}
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue