Skip to content

Commit 8a4bcda

Browse files
committed
Fix: panning influenced by velocity when loading song; check for prerelease option not checked when in beta version
1 parent ea2ada1 commit 8a4bcda

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Diff for: scripts/control_create/control_create.gml

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ function control_create() {
111111
// Application
112112
update = 0
113113
check_update = 1
114-
check_prerelease = 0
114+
check_prerelease = is_prerelease
115115
update_success = 0
116116
show_welcome = 1
117117
scroll_wheel = 0

Diff for: scripts/macros/macros.gml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
function macros() {
22
#macro gm_runtime_version "2022.6.1.40"
33
#macro version_date "2024.11.28"
4-
#macro version "3.11.0-beta.3"
4+
#macro version "3.11.0-beta.4"
55
#macro is_prerelease 1 // remember to change to 0 in the release!
66
#macro nbs_version 5
77
#macro pat_version 1

Diff for: scripts/open_song_nbs/open_song_nbs.gml

+1-1
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ function open_song_nbs(fn, sounds_path = "", safeopen) {
113113
ins: ins,
114114
key: median(0, key, 87),
115115
vel: vel,
116-
pan: vel,
116+
pan: pan,
117117
pit: pit,
118118
});
119119
}

0 commit comments

Comments
 (0)