diff options
| author | 2016-04-24 20:41:31 -0400 | |
|---|---|---|
| committer | 2016-04-24 20:41:31 -0400 | |
| commit | 86be9779cc2cc9ab5cf4cfeee48e16b523e992f3 (patch) | |
| tree | 71ed563fa4f350197d3fbbdb1bc4d1d963326598 | |
| parent | ea6bc4d8ce5734b9167fde917d5e0c8d406925ac (diff) | |
Wonderswan audio/video files renamed to match driver (nw)
| -rw-r--r-- | scripts/target/mame/mess.lua | 8 | ||||
| -rw-r--r-- | src/mame/audio/wswan.cpp (renamed from src/mame/audio/wswan_snd.cpp) | 2 | ||||
| -rw-r--r-- | src/mame/audio/wswan.h (renamed from src/mame/audio/wswan_snd.h) | 2 | ||||
| -rw-r--r-- | src/mame/includes/wswan.h | 4 | ||||
| -rw-r--r-- | src/mame/video/wswan.cpp (renamed from src/mame/video/wswan_video.cpp) | 4 | ||||
| -rw-r--r-- | src/mame/video/wswan.h (renamed from src/mame/video/wswan_video.h) | 0 |
6 files changed, 9 insertions, 11 deletions
diff --git a/scripts/target/mame/mess.lua b/scripts/target/mame/mess.lua index 720f6244a3b..2f96a715fea 100644 --- a/scripts/target/mame/mess.lua +++ b/scripts/target/mame/mess.lua @@ -1324,11 +1324,11 @@ files { MAME_DIR .. "src/mame/drivers/tamag1.cpp", MAME_DIR .. "src/mame/drivers/wswan.cpp", MAME_DIR .. "src/mame/includes/wswan.h", - MAME_DIR .. "src/mame/audio/wswan_snd.cpp", - MAME_DIR .. "src/mame/audio/wswan_snd.h", + MAME_DIR .. "src/mame/audio/wswan.cpp", + MAME_DIR .. "src/mame/audio/wswan.h", MAME_DIR .. "src/mame/machine/wswan.cpp", - MAME_DIR .. "src/mame/video/wswan_video.cpp", - MAME_DIR .. "src/mame/video/wswan_video.h", + MAME_DIR .. "src/mame/video/wswan.cpp", + MAME_DIR .. "src/mame/video/wswan.h", } createMESSProjects(_target, _subtarget, "be") diff --git a/src/mame/audio/wswan_snd.cpp b/src/mame/audio/wswan.cpp index 42918fb191b..1eb25d0d55d 100644 --- a/src/mame/audio/wswan_snd.cpp +++ b/src/mame/audio/wswan.cpp @@ -13,7 +13,7 @@ The noise taps and behavior are the same as the Virtual Boy. **************************************************************************************/ -#include "wswan_snd.h" +#include "wswan.h" // device type definition diff --git a/src/mame/audio/wswan_snd.h b/src/mame/audio/wswan.h index 227922e3cf9..90e9c5746f9 100644 --- a/src/mame/audio/wswan_snd.h +++ b/src/mame/audio/wswan.h @@ -2,7 +2,7 @@ // copyright-holders:Wilbert Pol /***************************************************************************** * - * includes/wswan_snd.h + * includes/wswan.h * ****************************************************************************/ diff --git a/src/mame/includes/wswan.h b/src/mame/includes/wswan.h index 5cdc8336f04..ec620cf39d0 100644 --- a/src/mame/includes/wswan.h +++ b/src/mame/includes/wswan.h @@ -17,8 +17,8 @@ #include "emu.h" #include "cpu/v30mz/v30mz.h" #include "machine/nvram.h" -#include "audio/wswan_snd.h" -#include "video/wswan_video.h" +#include "audio/wswan.h" +#include "video/wswan.h" #include "bus/wswan/slot.h" #include "bus/wswan/rom.h" diff --git a/src/mame/video/wswan_video.cpp b/src/mame/video/wswan.cpp index 8dbb60f0db8..58177a8193d 100644 --- a/src/mame/video/wswan_video.cpp +++ b/src/mame/video/wswan.cpp @@ -2,8 +2,6 @@ // copyright-holders:Anthony Kruize, Wilbert Pol /*************************************************************************** - wswan_video.c - File to handle video emulation of the Bandai WonderSwan VDP. Anthony Kruize @@ -15,7 +13,7 @@ ***************************************************************************/ -#include "wswan_video.h" +#include "wswan.h" const device_type WSWAN_VIDEO = &device_creator<wswan_video_device>; diff --git a/src/mame/video/wswan_video.h b/src/mame/video/wswan.h index 3cad1155075..3cad1155075 100644 --- a/src/mame/video/wswan_video.h +++ b/src/mame/video/wswan.h |
