mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 07:17:45 -04:00
improvements for type issues
This commit is contained in:
parent
0d8d97f87c
commit
91ea9406e2
9 changed files with 39 additions and 39 deletions
|
@ -1094,7 +1094,7 @@ void pcd_state_loaded_mem(void)
|
|||
Pico_mcd->m.dmna_ret_2m &= 3;
|
||||
|
||||
// restore hint vector
|
||||
*(unsigned short *)(Pico_mcd->bios + 0x72) = Pico_mcd->m.hint_vector;
|
||||
*(u16 *)(Pico_mcd->bios + 0x72) = Pico_mcd->m.hint_vector;
|
||||
}
|
||||
|
||||
#ifdef EMU_M68K
|
||||
|
|
|
@ -120,7 +120,7 @@ end:
|
|||
Pico_mcd->pcm_mixpos += steps;
|
||||
}
|
||||
|
||||
void pcd_pcm_update(int *buf32, int length, int stereo)
|
||||
void pcd_pcm_update(s32 *buf32, int length, int stereo)
|
||||
{
|
||||
int step, *pcm;
|
||||
int p = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue