diff options
author | 2018-11-28 00:00:28 +1100 | |
---|---|---|
committer | 2018-11-28 00:00:28 +1100 | |
commit | b47259fa0800d8fa22b28e3547865e83ba94702b (patch) | |
tree | e809d24422768f0fca685386c87f1e83088b2807 | |
parent | ac6053ecb0c1d2cea91fc2bd4aa72d9e3df6b41f (diff) |
that would help (nw)
-rw-r--r-- | src/devices/bus/sbus/cgsix.h | 4 |
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(); |