From 5a5a25a255ea29ecc39f10959746c9adbf01a934 Mon Sep 17 00:00:00 2001 From: ~ Care <126361810+usb-port-2@users.noreply.github.com> Date: Wed, 19 Jun 2024 00:25:33 +0100 Subject: [PATCH] super important (#321) the game would be broken without this, thank you - @CharlesCatYT 19/06/2024 --- source/funkin/backend/system/Conductor.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/funkin/backend/system/Conductor.hx b/source/funkin/backend/system/Conductor.hx index 8db60b364..bd5fca4cf 100644 --- a/source/funkin/backend/system/Conductor.hx +++ b/source/funkin/backend/system/Conductor.hx @@ -168,7 +168,7 @@ class Conductor // update conductor songPosition = lastSongPos; } else { - songPosition = songPosition + songOffset + elapsed * 1000; + songPosition += songOffset + elapsed * 1000; } }