diff --git a/copy.ogg b/audio/copy.ogg similarity index 100% rename from copy.ogg rename to audio/copy.ogg diff --git a/error.ogg b/audio/error.ogg similarity index 100% rename from error.ogg rename to audio/error.ogg diff --git a/naive.ogg b/audio/naive.ogg similarity index 100% rename from naive.ogg rename to audio/naive.ogg diff --git a/paste.ogg b/audio/paste.ogg similarity index 100% rename from paste.ogg rename to audio/paste.ogg diff --git a/solve.ogg b/audio/solve.ogg similarity index 100% rename from solve.ogg rename to audio/solve.ogg diff --git a/tick.ogg b/audio/tick.ogg similarity index 100% rename from tick.ogg rename to audio/tick.ogg diff --git a/untick.ogg b/audio/untick.ogg similarity index 100% rename from untick.ogg rename to audio/untick.ogg diff --git a/main.lua b/main.lua index 03f054b..9dd197e 100644 --- a/main.lua +++ b/main.lua @@ -35,7 +35,7 @@ local suc, res = pcall(FILE.load, 'data.json', '-json') if suc then TABLE.update(DATA, res) end SFX.setVol(DATA.sound and 1 or 0) -BGM.load('naive', 'naive.ogg') +BGM.load('naive', 'audio/naive.ogg') TASK.new(function() TASK.yieldT(.626) if DATA.sound then @@ -44,12 +44,12 @@ TASK.new(function() end) SFX.load({ - tick = 'tick.ogg', - untick = 'untick.ogg', - solve = 'solve.ogg', - copy = 'copy.ogg', - paste = 'paste.ogg', - error = 'error.ogg', + tick = 'audio/tick.ogg', + untick = 'audio/untick.ogg', + solve = 'audio/solve.ogg', + copy = 'audio/copy.ogg', + paste = 'audio/paste.ogg', + error = 'audio/error.ogg', }) FONT.load('unifont', 'unifont.otf')