A gameboy emulator in several different languages
Geek Repo:Geek Repo
Github PK Tool:Github PK Tool
shish opened this issue 3 years ago · comments
C++ and Go use a signed int for if sleep_for > 0, Rust uses an unsigned if time_spent < time_per_frame
if sleep_for > 0
if time_spent < time_per_frame
Switching C++ and Go to use the unsigned approach would probably be easiest