From aecd13a460b4968299f20ffb213bb903dc475a3e Mon Sep 17 00:00:00 2001 From: Rain Clark Date: Sat, 8 Oct 2016 01:07:30 -0400 Subject: [PATCH] Fixed default sound :speaker: --- source/Main.hx | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/source/Main.hx b/source/Main.hx index a3f1516..3831f24 100644 --- a/source/Main.hx +++ b/source/Main.hx @@ -22,7 +22,10 @@ class Main extends Sprite FlxG.sound.volume = _save.data.volume; // Set save data volume to default (100%) else - _save.data.volume = FlxG.sound.volume; + _save.data.volume = 1; + + // SAVE WRITE + _save.flush(); // SAVE END _save.close();