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:
parent
47089a3f02
commit
bd58dd1d95
Binary file not shown.
Binary file not shown.
|
@ -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
|
Loading…
Reference in New Issue