summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/sound/nes_apu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/sound/nes_apu.cpp')
-rw-r--r--src/devices/sound/nes_apu.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/devices/sound/nes_apu.cpp b/src/devices/sound/nes_apu.cpp
index 39d8d32613d..d2b6a98b900 100644
--- a/src/devices/sound/nes_apu.cpp
+++ b/src/devices/sound/nes_apu.cpp
@@ -48,7 +48,9 @@
#include "emu.h"
#include "nes_apu.h"
+
#include "cpu/m6502/n2a03.h"
+#include "screen.h"
@@ -101,7 +103,7 @@ static void create_noise(uint8 *buf, const int bits, int size)
}
}
-const device_type NES_APU = &device_creator<nesapu_device>;
+const device_type NES_APU = device_creator<nesapu_device>;
nesapu_device::nesapu_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
: device_t(mconfig, NES_APU, "N2A03 APU", tag, owner, clock, "nesapu", __FILE__),