rename lua functions that have changed in all checked in lua scripts
This commit is contained in:
parent
a8079f5170
commit
2d643f78b1
|
@ -104,9 +104,9 @@ end
|
||||||
reset()
|
reset()
|
||||||
frames()
|
frames()
|
||||||
|
|
||||||
if savestate.registerload then
|
if event.onloadstate then
|
||||||
savestate.registerload(load)
|
event.onloadstate(load)
|
||||||
savestate.registersave(save)
|
event.onsavestate(save)
|
||||||
end
|
end
|
||||||
|
|
||||||
while true do
|
while true do
|
||||||
|
|
|
@ -195,7 +195,7 @@ while true do
|
||||||
|
|
||||||
if finished then
|
if finished then
|
||||||
console.output("Movie finished")
|
console.output("Movie finished")
|
||||||
emu.pause()
|
client.pause()
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue