GB Video: Remove unused functions

This commit is contained in:
Jeffrey Pfau 2016-02-03 20:05:51 -08:00
parent 192f85259a
commit 44116c9beb
1 changed files with 0 additions and 12 deletions

View File

@ -250,18 +250,6 @@ static uint8_t GBVideoDummyRendererWriteVideoRegister(struct GBVideoRenderer* re
return value;
}
static void GBVideoDummyRendererWriteVRAM(struct GBVideoRenderer* renderer, uint16_t address) {
UNUSED(renderer);
UNUSED(address);
// Nothing to do
}
static void GBVideoDummyRendererWriteOAM(struct GBVideoRenderer* renderer, uint8_t oam) {
UNUSED(renderer);
UNUSED(oam);
// Nothing to do
}
static void GBVideoDummyRendererDrawDot(struct GBVideoRenderer* renderer, int x, int y, struct GBObj** obj, size_t oamMax) {
UNUSED(renderer);
UNUSED(x);