summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2018-11-28 00:00:28 +1100
committer Vas Crabb <vas@vastheman.com>2018-11-28 00:00:28 +1100
commitb47259fa0800d8fa22b28e3547865e83ba94702b (patch)
treee809d24422768f0fca685386c87f1e83088b2807
parentac6053ecb0c1d2cea91fc2bd4aa72d9e3df6b41f (diff)
that would help (nw)
-rw-r--r--src/devices/bus/sbus/cgsix.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/bus/sbus/cgsix.h b/src/devices/bus/sbus/cgsix.h
index e74ef2d97cb..3bee124d229 100644
--- a/src/devices/bus/sbus/cgsix.h
+++ b/src/devices/bus/sbus/cgsix.h
@@ -17,9 +17,10 @@
class sbus_cgsix_device : public device_t, public device_sbus_card_interface
{
-protected:
+public:
static constexpr feature_type imperfect_features() { return feature::GRAPHICS; }
+protected:
// construction/destruction
sbus_cgsix_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, uint32_t clock, const uint32_t vram_size)
: sbus_cgsix_device(mconfig, type, tag, owner, clock)
@@ -44,7 +45,6 @@ protected:
DECLARE_READ32_MEMBER(fbc_r);
DECLARE_WRITE32_MEMBER(fbc_w);
-protected:
uint32_t screen_update(screen_device &screen, bitmap_rgb32 &bitmap, const rectangle &cliprect);
uint8_t perform_rasterop(uint8_t src, uint8_t dst);
void handle_font_poke();