From 56cecf98a064a2176b2e28d6cb46be5dfa97d3ea Mon Sep 17 00:00:00 2001 From: shr Date: Fri, 15 Sep 2023 23:53:39 +0900 Subject: [PATCH] fix typo --- source/funkin/play/PlayState.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/funkin/play/PlayState.hx b/source/funkin/play/PlayState.hx index 22ea78580..2a8be1c5e 100644 --- a/source/funkin/play/PlayState.hx +++ b/source/funkin/play/PlayState.hx @@ -993,7 +993,7 @@ class PlayState extends MusicBeatSubState bufferCameraFrontEnd.unlock(); // Update the buffer texture using `flashSprite`. // This is IMMEDIATELY done while the main cameras are not rendered yet, - // so any shaders in the main part that refers the texture can see the updated texture! + // so any shaders in the main part that refer the texture can see the updated texture! maskTexture.fillRect(new Rectangle(0, 0, FlxG.width, FlxG.height), 0); maskTexture.draw(camMask.flashSprite, new openfl.geom.Matrix(1, 0, 0, 1, camMask.flashSprite.x, camMask.flashSprite.y)); }