From 49c8ad1b0232d6f23171065e15052e46506d97c5 Mon Sep 17 00:00:00 2001 From: Jeffrey Pfau Date: Sun, 25 Dec 2016 14:55:02 -0800 Subject: [PATCH] All: Remove out-of-date function declarations --- src/gb/memory.h | 1 - src/gb/video.h | 1 - src/gba/audio.h | 1 - 3 files changed, 3 deletions(-) diff --git a/src/gb/memory.h b/src/gb/memory.h index 70cd16128..cb3cf1b1d 100644 --- a/src/gb/memory.h +++ b/src/gb/memory.h @@ -163,7 +163,6 @@ void GBStore8(struct LR35902Core* cpu, uint16_t address, int8_t value); uint8_t GBView8(struct LR35902Core* cpu, uint16_t address, int segment); -int32_t GBMemoryProcessEvents(struct GB* gb, int32_t cycles); void GBMemoryDMA(struct GB* gb, uint16_t base); void GBMemoryWriteHDMA5(struct GB* gb, uint8_t value); diff --git a/src/gb/video.h b/src/gb/video.h index bc14d7184..a2ddccdb3 100644 --- a/src/gb/video.h +++ b/src/gb/video.h @@ -131,7 +131,6 @@ void GBVideoInit(struct GBVideo* video); void GBVideoReset(struct GBVideo* video); void GBVideoDeinit(struct GBVideo* video); void GBVideoAssociateRenderer(struct GBVideo* video, struct GBVideoRenderer* renderer); -int32_t GBVideoProcessEvents(struct GBVideo* video, int32_t cycles); void GBVideoProcessDots(struct GBVideo* video); void GBVideoWriteLCDC(struct GBVideo* video, GBRegisterLCDC value); diff --git a/src/gba/audio.h b/src/gba/audio.h index f1d51b5de..7f8175380 100644 --- a/src/gba/audio.h +++ b/src/gba/audio.h @@ -89,7 +89,6 @@ void GBAAudioDeinit(struct GBAAudio* audio); void GBAAudioResizeBuffer(struct GBAAudio* audio, size_t samples); -int32_t GBAAudioProcessEvents(struct GBAAudio* audio, int32_t cycles); void GBAAudioScheduleFifoDma(struct GBAAudio* audio, int number, struct GBADMA* info); void GBAAudioWriteSOUND1CNT_LO(struct GBAAudio* audio, uint16_t value);