Fix running on Linux

I think.
Hopefully.
This commit is contained in:
Perry Lee 2020-03-08 16:07:47 -04:00
parent 58f02f9180
commit a924fbd63e
2 changed files with 3 additions and 3 deletions

View file

@ -142,7 +142,7 @@ local cues = {
cue("Cent", {"0090", "0091", "0092", "0093", "0094"}, "0024"),
cue("Jail1", {"0090", "0091", "0092", "0093", "0094", "0220"}, "0008"),
cue("Momo", {"0090", "0091", "0092", "0093", "0094", "0280", "0281"}, "0002"),
cue("lounge", {"0090", "0091", "0092", "0093", "0094"}, "0002"),
cue("Lounge", {"0090", "0091", "0092", "0093", "0094"}, "0002"),
cue("Jail2", {"0090", "0091", "0092", "0093", "0094", "0099"}, "0008"),
cue("Blcny1", {"0090", "0091", "0092", "0093", "0094"}, "0030"),
cue("Priso1", {"0090", "0091", "0092", "0093", "0094"}, "0029"),
@ -243,4 +243,4 @@ function music:writeCues(tscFiles)
end
end
return music
return music

View file

@ -51,7 +51,7 @@ local function to_bits(n)
local tbl = {}
local cnt = 1
while (n > 0) do
local last = math.mod(n,2)
local last = math.fmod(n,2)
if(last == 1) then
tbl[cnt] = 1
else