summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/includes')
-rw-r--r--src/mess/includes/gb.h14
-rw-r--r--src/mess/includes/lynx.h2
-rw-r--r--src/mess/includes/softbox.h12
3 files changed, 14 insertions, 14 deletions
diff --git a/src/mess/includes/gb.h b/src/mess/includes/gb.h
index 3e44670c0d2..bbe8d220505 100644
--- a/src/mess/includes/gb.h
+++ b/src/mess/includes/gb.h
@@ -96,12 +96,12 @@ struct gb_lcd_t {
UINT8 *gb_vram; // Pointer to VRAM
UINT8 *gb_oam; // Pointer to OAM memory
UINT8 gb_tile_no_mod;
- UINT32 gb_chrgen_offs; // GB Character generator
- UINT32 gb_bgdtab_offs; // GB Background character table
- UINT32 gb_wndtab_offs; // GB Window character table
- UINT32 gbc_chrgen_offs; // CGB Character generator
- UINT32 gbc_bgdtab_offs; // CGB Background character table
- UINT32 gbc_wndtab_offs; // CGB Window character table
+ UINT32 gb_chrgen_offs; // GB Character generator
+ UINT32 gb_bgdtab_offs; // GB Background character table
+ UINT32 gb_wndtab_offs; // GB Window character table
+ UINT32 gbc_chrgen_offs; // CGB Character generator
+ UINT32 gbc_bgdtab_offs; // CGB Background character table
+ UINT32 gbc_wndtab_offs; // CGB Window character table
int gb_vram_bank;
};
@@ -234,7 +234,7 @@ protected:
void gb_increment_scanline();
void gb_lcd_switch_on();
inline void gb_plot_pixel(bitmap_ind16 &bitmap, int x, int y, UINT32 color);
-
+
void save_gb_base();
void save_gb_video();
void save_gbc_only();
diff --git a/src/mess/includes/lynx.h b/src/mess/includes/lynx.h
index 3a5406ae3f3..31ef7b9a4bb 100644
--- a/src/mess/includes/lynx.h
+++ b/src/mess/includes/lynx.h
@@ -116,7 +116,7 @@ public:
required_shared_ptr<UINT8> m_mem_fffa;
required_device<cpu_device> m_maincpu;
required_device<lynx_sound_device> m_sound;
-
+
UINT16 m_granularity;
int m_sign_AB;
int m_sign_CD;
diff --git a/src/mess/includes/softbox.h b/src/mess/includes/softbox.h
index 3ecc1c53497..e8cc9d68757 100644
--- a/src/mess/includes/softbox.h
+++ b/src/mess/includes/softbox.h
@@ -16,18 +16,18 @@
#define I8251_TAG "i8251"
#define I8255_0_TAG "ic17"
#define I8255_1_TAG "ic16"
-#define COM8116_TAG "ic14"
-#define RS232_TAG "rs232"
+#define COM8116_TAG "ic14"
+#define RS232_TAG "rs232"
class softbox_state : public driver_device
{
public:
softbox_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
- m_maincpu(*this, Z80_TAG),
- m_usart(*this, I8251_TAG),
- m_dbrg(*this, COM8116_TAG),
- m_ieee(*this, IEEE488_TAG)
+ m_maincpu(*this, Z80_TAG),
+ m_usart(*this, I8251_TAG),
+ m_dbrg(*this, COM8116_TAG),
+ m_ieee(*this, IEEE488_TAG)
{ }
required_device<cpu_device> m_maincpu;