QuickerNES NES 2.0 header read fix (squashed PR #4211)

* Integrating NES2.0 cart loading fixes

* Adding windows dll

* Update bizinterface.cpp according to Morilli's recommendation
This commit is contained in:
Sergio Martin 2025-02-07 20:11:33 +01:00 committed by GitHub
parent 47089a3f02
commit bd58dd1d95
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 3 additions and 4 deletions

Binary file not shown.

Binary file not shown.

View File

@ -37,10 +37,9 @@ QN_EXPORT void qn_delete(quickerNES::Emu *e)
free(e);
}
QN_EXPORT const char *qn_loadines(quickerNES::Emu *e, const void *data, int length)
QN_EXPORT const char *qn_loadines(quickerNES::Emu *e, const uint8_t *data, int length)
{
e->load_ines((const uint8_t*)data);
return 0;
return e->load_ines(data);
}
QN_EXPORT const char *qn_set_sample_rate(quickerNES::Emu *e, int rate)

@ -1 +1 @@
Subproject commit 61ff28710c44b75c170dff1ee8f89831296e34b5
Subproject commit ac1fde2036c3e4a2544a3f56196c33a17b60c90d