From a5e4482ebff3aef553f7ceffdcfc14ddc408dfa8 Mon Sep 17 00:00:00 2001 From: hap Date: Mon, 19 Feb 2024 13:49:04 +0100 Subject: [PATCH] lc7582: rename file to lc7580 --- scripts/src/video.lua | 8 ++++---- src/devices/video/{lc7582.cpp => lc7580.cpp} | 2 +- src/devices/video/{lc7582.h => lc7580.h} | 6 +++--- src/mame/cxg/dominator.cpp | 2 +- src/mame/cxg/professor.cpp | 2 +- 5 files changed, 10 insertions(+), 10 deletions(-) rename src/devices/video/{lc7582.cpp => lc7580.cpp} (99%) rename src/devices/video/{lc7582.h => lc7580.h} (94%) diff --git a/scripts/src/video.lua b/scripts/src/video.lua index edac07a927f..825ff9b08a9 100644 --- a/scripts/src/video.lua +++ b/scripts/src/video.lua @@ -619,13 +619,13 @@ end -------------------------------------------------- -- ---@src/devices/video/lc7582.h,VIDEOS["LC7582"] = true +--@src/devices/video/lc7580.h,VIDEOS["LC7580"] = true -------------------------------------------------- -if (VIDEOS["LC7582"]~=null) then +if (VIDEOS["LC7580"]~=null) then files { - MAME_DIR .. "src/devices/video/lc7582.cpp", - MAME_DIR .. "src/devices/video/lc7582.h", + MAME_DIR .. "src/devices/video/lc7580.cpp", + MAME_DIR .. "src/devices/video/lc7580.h", } end diff --git a/src/devices/video/lc7582.cpp b/src/devices/video/lc7580.cpp similarity index 99% rename from src/devices/video/lc7582.cpp rename to src/devices/video/lc7580.cpp index 221c7450c1c..17090f74578 100644 --- a/src/devices/video/lc7582.cpp +++ b/src/devices/video/lc7580.cpp @@ -14,7 +14,7 @@ TODO: */ #include "emu.h" -#include "video/lc7582.h" +#include "video/lc7580.h" DEFINE_DEVICE_TYPE(LC7580, lc7580_device, "lc7580", "Sanyo LC7580 LCD Driver") diff --git a/src/devices/video/lc7582.h b/src/devices/video/lc7580.h similarity index 94% rename from src/devices/video/lc7582.h rename to src/devices/video/lc7580.h index 668dc4f021d..583ce3c45d6 100644 --- a/src/devices/video/lc7582.h +++ b/src/devices/video/lc7580.h @@ -6,8 +6,8 @@ */ -#ifndef MAME_VIDEO_LC7582_H -#define MAME_VIDEO_LC7582_H +#ifndef MAME_VIDEO_LC7580_H +#define MAME_VIDEO_LC7580_H #pragma once @@ -77,4 +77,4 @@ public: DECLARE_DEVICE_TYPE(LC7580, lc7580_device) DECLARE_DEVICE_TYPE(LC7582, lc7582_device) -#endif // MAME_VIDEO_LC7582_H +#endif // MAME_VIDEO_LC7580_H diff --git a/src/mame/cxg/dominator.cpp b/src/mame/cxg/dominator.cpp index 70d233ff661..e87845df2ec 100644 --- a/src/mame/cxg/dominator.cpp +++ b/src/mame/cxg/dominator.cpp @@ -27,7 +27,7 @@ Sphinx Galaxy is on similar hardware too, with less leds. #include "machine/nvram.h" #include "machine/sensorboard.h" #include "sound/dac.h" -#include "video/lc7582.h" +#include "video/lc7580.h" #include "video/pwm.h" #include "speaker.h" diff --git a/src/mame/cxg/professor.cpp b/src/mame/cxg/professor.cpp index d18329d5561..a0544a8d90b 100644 --- a/src/mame/cxg/professor.cpp +++ b/src/mame/cxg/professor.cpp @@ -27,7 +27,7 @@ TODO: #include "cpu/m6800/m6801.h" #include "machine/sensorboard.h" #include "sound/dac.h" -#include "video/lc7582.h" +#include "video/lc7580.h" #include "video/pwm.h" #include "screen.h"