summaryrefslogtreecommitdiffstats
path: root/src/mame/mess.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2022-06-13 16:53:23 +1000
committer Vas Crabb <vas@vastheman.com>2022-06-13 16:53:23 +1000
commit74fe6e9d5ca562915fcb70614d36d1b5101e695b (patch)
treeeb19bd028a70ece6c79f17a9a8c14bd348b42c14 /src/mame/mess.cpp
parent30ef2dd86b11eb1f3d80412f0819b42a5af16966 (diff)
-Got rid of some legacy MESS support glue.
* Got rid of the special-casing for the "mess" subtarget name. * Got rid of the MESS-specific Windows resources, emuator info source and man page. * Added subtarget name to the internal name and original name in Windows resources. -ui: Put the system-specific items on the input settings menu together, and fixed the crosshair visibility settings.
Diffstat (limited to 'src/mame/mess.cpp')
-rw-r--r--src/mame/mess.cpp23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/mame/mess.cpp b/src/mame/mess.cpp
deleted file mode 100644
index ab1c26b59c5..00000000000
--- a/src/mame/mess.cpp
+++ /dev/null
@@ -1,23 +0,0 @@
-// license:BSD-3-Clause
-// copyright-holders:Aaron Giles
-/***************************************************************************
-
- mess.cpp
-
- Specific (per target) constants
-
-****************************************************************************/
-
-#include "emu.h"
-
-#define APPNAME "MESS"
-#define APPNAME_LOWER "mess"
-#define CONFIGNAME "mess"
-#define COPYRIGHT "Copyright Nicola Salmoria\nand the MAME team\nhttps://mamedev.org"
-#define COPYRIGHT_INFO "Copyright Nicola Salmoria and the MAME team"
-
-const char * emulator_info::get_appname() { return APPNAME;}
-const char * emulator_info::get_appname_lower() { return APPNAME_LOWER;}
-const char * emulator_info::get_configname() { return CONFIGNAME;}
-const char * emulator_info::get_copyright() { return COPYRIGHT;}
-const char * emulator_info::get_copyright_info() { return COPYRIGHT_INFO;}