aboutsummaryrefslogtreecommitdiff
path: root/source/gfx.c
diff options
context:
space:
mode:
authortwinaphex2014-12-15 00:48:14 +0100
committertwinaphex2014-12-15 00:48:14 +0100
commitb27c451831082179cc9bc3c1b3424ebb0f66dd74 (patch)
treeadae88a42dc696f3e5e8c5de6c2d1694091c1fc7 /source/gfx.c
parentc26dca005ec484bdb855ef2ba6e1080fd1f8c1ce (diff)
downloadsnesemu-b27c451831082179cc9bc3c1b3424ebb0f66dd74.tar.gz
snesemu-b27c451831082179cc9bc3c1b3424ebb0f66dd74.tar.bz2
snesemu-b27c451831082179cc9bc3c1b3424ebb0f66dd74.zip
Remove ACCUMULATE_READ_JOYPAD
Diffstat (limited to 'source/gfx.c')
-rw-r--r--source/gfx.c16
1 files changed, 0 insertions, 16 deletions
diff --git a/source/gfx.c b/source/gfx.c
index 9ca3dc5..6c86ba5 100644
--- a/source/gfx.c
+++ b/source/gfx.c
@@ -1059,14 +1059,6 @@ void S9xSetupOBJ()
static void DrawOBJS(bool OnMain, uint8_t D)
{
-#ifdef ACCUMULATE_JOYPAD
- /*
- * This call allows NDSSFC to synchronise the DS controller more often.
- * If porting a later version of Snes9x into NDSSFC, it is essential to
- * preserve it.
- */
- NDSSFCAccumulateJoypad();
-#endif
#ifdef MK_DEBUG_RTO
if (Settings.BGLayering) fprintf(stderr, "Entering DrawOBJS() for %d-%d\n",
GFX.StartY, GFX.EndY);
@@ -2209,14 +2201,6 @@ static void DrawBackgroundMode5(uint32_t bg, uint8_t Z1, uint8_t Z2)
static void DrawBackground(uint32_t BGMode, uint32_t bg, uint8_t Z1, uint8_t Z2)
{
-#ifdef ACCUMULATE_JOYPAD
- /*
- * This call allows NDSSFC to synchronise the DS controller more often.
- * If porting a later version of Snes9x into NDSSFC, it is essential to
- * preserve it.
- */
- NDSSFCAccumulateJoypad();
-#endif
GFX.PixSize = 1;
BG.TileSize = BGSizes [PPU.BG[bg].BGSize];