From 193537396320152456d8f7a0d2863c5900c9ad43 Mon Sep 17 00:00:00 2001 From: Eric Myllyoja Date: Sun, 13 Mar 2022 14:47:59 -0400 Subject: [PATCH] Hide song name in play state --- 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 1efcaef11..3925288fc 100644 --- a/source/funkin/play/PlayState.hx +++ b/source/funkin/play/PlayState.hx @@ -415,7 +415,7 @@ class PlayState extends MusicBeatState startCountdown(); } - this.leftWatermarkText.text = '${currentSong.song.toUpperCase()} - ${SongLoad.curDiff.toUpperCase()}'; + // this.leftWatermarkText.text = '${currentSong.song.toUpperCase()} - ${SongLoad.curDiff.toUpperCase()}'; this.rightWatermarkText.text = Constants.VERSION; }