diept / bizhawk

Automatically exported from code.google.com/p/bizhawk
0 stars 0 forks source link

reboot_core and frameadvance doesn't play along #446

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. As an example/testcase, create this LUA script:
console.writeline("Start!")
client.reboot_core()
emu.frameadvance()
console.writeline("End!")

What is the expected output? What do you see instead?
Expected:
Start!
End!

What I see:
Start!
End!
Start!
Start!
Start!
Start!
Start!
Start!
Start!
Start!
Start!
Start!
...

What version of the product are you using? On what operating system?
1.10.0, Windows 10

Please provide any additional information below.
If there are any other way to reset the emulator so I start at framecount 0, 
please let me know.

Original issue reported on code.google.com by khelat...@gmail.com on 22 Jun 2015 at 6:48

GoogleCodeExporter commented 8 years ago
Found a work-around. Loading a save state sets the frame counter to what the 
save state was at as well.

Original comment by khelat...@gmail.com on 23 Jun 2015 at 8:28