Skip to content

Commit

Permalink
Fix: panning influenced by velocity when loading song; check for prer…
Browse files Browse the repository at this point in the history
…elease option not checked when in beta version
  • Loading branch information
OctoFlareDev committed Nov 28, 2024
1 parent ea2ada1 commit 8a4bcda
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/control_create/control_create.gml
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ function control_create() {
// Application
update = 0
check_update = 1
check_prerelease = 0
check_prerelease = is_prerelease
update_success = 0
show_welcome = 1
scroll_wheel = 0
Expand Down
2 changes: 1 addition & 1 deletion scripts/macros/macros.gml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
function macros() {
#macro gm_runtime_version "2022.6.1.40"
#macro version_date "2024.11.28"
#macro version "3.11.0-beta.3"
#macro version "3.11.0-beta.4"
#macro is_prerelease 1 // remember to change to 0 in the release!
#macro nbs_version 5
#macro pat_version 1
Expand Down
2 changes: 1 addition & 1 deletion scripts/open_song_nbs/open_song_nbs.gml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ function open_song_nbs(fn, sounds_path = "", safeopen) {
ins: ins,
key: median(0, key, 87),
vel: vel,
pan: vel,
pan: pan,
pit: pit,
});
}
Expand Down

0 comments on commit 8a4bcda

Please sign in to comment.