diff options
Diffstat (limited to 'src/devices/bus/ti99/peb/evpc.h')
-rw-r--r-- | src/devices/bus/ti99/peb/evpc.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/devices/bus/ti99/peb/evpc.h b/src/devices/bus/ti99/peb/evpc.h index b32d8cbec94..683933a5780 100644 --- a/src/devices/bus/ti99/peb/evpc.h +++ b/src/devices/bus/ti99/peb/evpc.h @@ -42,11 +42,11 @@ public: protected: struct evpc_palette { - uint8_t read_index = 0, write_index = 0, mask = 0; - int read = 0; - int state = 0; - struct { uint8_t red = 0, green = 0, blue = 0; } color[0x100]; - //int dirty = 0; + uint8_t read_index, write_index, mask; + int read; + int state; + struct { uint8_t red, green, blue; } color[0x100]; + //int dirty; }; void device_start() override; @@ -66,7 +66,7 @@ private: DECLARE_WRITE_LINE_MEMBER( video_interrupt_in ); - int m_address = 0; + int m_address; int m_dsr_page; bool m_inDsrArea; bool m_novram_accessed; |