diff options
author | 2015-12-05 21:20:22 +0100 | |
---|---|---|
committer | 2015-12-05 21:20:56 +0100 | |
commit | 7ab3a5e0fc0c2e259c4011cdfce9684f2609592a (patch) | |
tree | 4fc55cd2e12f2b99b69bacb1dd0dd7d42bde3711 /src/devices/sound/cdp1869.h | |
parent | 1db2b0d6b40ff3635b637f5e854c5fd62a9db169 (diff) |
override part 3 (nw)
Diffstat (limited to 'src/devices/sound/cdp1869.h')
-rw-r--r-- | src/devices/sound/cdp1869.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/sound/cdp1869.h b/src/devices/sound/cdp1869.h index 96185021ac4..23f538fb931 100644 --- a/src/devices/sound/cdp1869.h +++ b/src/devices/sound/cdp1869.h @@ -225,16 +225,16 @@ public: protected: // device-level overrides - virtual machine_config_constructor device_mconfig_additions() const; - virtual void device_start(); - virtual void device_post_load(); - virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr); + virtual machine_config_constructor device_mconfig_additions() const override; + virtual void device_start() override; + virtual void device_post_load() override; + virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr) override; // device_memory_interface overrides - virtual const address_space_config *memory_space_config(address_spacenum spacenum = AS_0) const; + virtual const address_space_config *memory_space_config(address_spacenum spacenum = AS_0) const override; // device_sound_interface callbacks - virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples); + virtual void sound_stream_update(sound_stream &stream, stream_sample_t **inputs, stream_sample_t **outputs, int samples) override; inline bool is_ntsc(); inline UINT8 read_page_ram_byte(offs_t address); |