Why was this under APU

This commit is contained in:
Lior Halphon 2021-10-17 20:04:31 +03:00
parent 886363b398
commit de16ab5d08
2 changed files with 4 additions and 1 deletions

View File

@ -184,7 +184,6 @@ void GB_apu_div_secondary_event(GB_gameboy_t *gb);
void GB_apu_init(GB_gameboy_t *gb);
void GB_apu_run(GB_gameboy_t *gb);
void GB_apu_update_cycles_per_sample(GB_gameboy_t *gb);
void GB_borrow_sgb_border(GB_gameboy_t *gb);
#endif
#endif /* apu_h */

View File

@ -892,5 +892,9 @@ unsigned GB_get_player_count(GB_gameboy_t *gb);
// `title` must be at least 17 bytes in size
void GB_get_rom_title(GB_gameboy_t *gb, char *title);
uint32_t GB_get_rom_crc32(GB_gameboy_t *gb);
#ifdef GB_INTERNAL
void GB_borrow_sgb_border(GB_gameboy_t *gb);
#endif
#endif /* GB_h */