From 7db4b4df13a74dc95d0d3e06f6b1085bc8d3b704 Mon Sep 17 00:00:00 2001 From: Brice Onken <32155223+briceonk@users.noreply.github.com> Date: Sun, 26 Feb 2023 09:38:42 -0800 Subject: [PATCH] sony/news_r4k.cpp: Fixed graphics flag (unemulated rather than imperfect). (#10939) --- src/mame/sony/news_r4k.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mame/sony/news_r4k.cpp b/src/mame/sony/news_r4k.cpp index a83e7c3f468..1e989b8e7fc 100644 --- a/src/mame/sony/news_r4k.cpp +++ b/src/mame/sony/news_r4k.cpp @@ -158,6 +158,8 @@ public: void nws5000x(machine_config &config); + static constexpr feature_type unemulated_features() { return feature::GRAPHICS; } + protected: enum irq0_number : uint32_t @@ -1253,4 +1255,4 @@ ROM_END // Machine definitions // YEAR NAME P CM MACHINE INPUT CLASS INIT COMPANY FULLNAME FLAGS -COMP(1994, nws5000x, 0, 0, nws5000x, nws5000, news_r4k_state, empty_init, "Sony", "NET WORK STATION NWS-5000X", MACHINE_NOT_WORKING | MACHINE_IMPERFECT_TIMING | MACHINE_IMPERFECT_GRAPHICS | MACHINE_NO_SOUND) +COMP(1994, nws5000x, 0, 0, nws5000x, nws5000, news_r4k_state, empty_init, "Sony", "NET WORK STATION NWS-5000X", MACHINE_NOT_WORKING | MACHINE_IMPERFECT_TIMING | MACHINE_NO_SOUND)