We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In void CDVD_Drive::N_command_readkey(uint32_t arg):
void CDVD_Drive::N_command_readkey(uint32_t arg)
int32_t code = (int32_t)stoi(serial.substr(5, 3) + serial.substr(9, 2));`
serial is "4EDGES.ELF;", so junk is fed to stoi which kills things with an unhandled exception.
serial
4EDGES.ELF;
stoi
When bios skipping is on, readkey is never called and the demo boots.
readkey
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In
void CDVD_Drive::N_command_readkey(uint32_t arg)
:serial
is "4EDGES.ELF;
", so junk is fed tostoi
which kills things with an unhandled exception.When bios skipping is on,
readkey
is never called and the demo boots.The text was updated successfully, but these errors were encountered: