Remove ununsed, commented code

This commit is contained in:
negativeExponent
2021-06-03 13:30:16 +08:00
parent f6cc87a8fa
commit e75d6be00b
3 changed files with 0 additions and 5 deletions

View File

@@ -171,8 +171,6 @@ static unsigned serialize_size;
/* emulator-specific callback functions */
void UpdatePPUView(int refreshchr) { }
const char * GetKeyboard(void)
{
return "";

View File

@@ -1243,7 +1243,6 @@ int FCEUPPU_Loop(int skip) {
for (scanline = 0; scanline < ppu.totalscanlines; ) { /* scanline is incremented in DoLine. Evil. :/ */
deempcnt[deemp]++;
/* if ((PPUViewer) && (scanline == PPUViewScanline)) UpdatePPUView(1); */
DoLine();
if (scanline < ppu.normal_scanlines || scanline == ppu.totalscanlines)
overclocking = 0;

View File

@@ -1,8 +1,6 @@
#ifndef _FCEU_PPUVIEW_H
#define _FCEU_PPUVIEW_H
extern int PPUViewScanline;
extern int PPUViewer;
extern int scanline;
void PPUViewDoBlit();