summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/includes/triplhnt.h
diff options
context:
space:
mode:
author Aaron Giles <aaron@aarongiles.com>2011-04-01 06:50:56 +0000
committer Aaron Giles <aaron@aarongiles.com>2011-04-01 06:50:56 +0000
commit8409f7d3233f0dd5d211f68e564ca4ebb662f8bf (patch)
tree3edea78fc971015d4b0799f6c5999657685df573 /src/mame/includes/triplhnt.h
parent86afc9b913dd13338a8888f27bb13d1548ef8f33 (diff)
Final bulk rename for 0.142: ensure that all members of
driver_device classes have an m_ prefix on them. When we eventually move functions using these into member functions, we will be able to remove the state-> pointers, and having the member variables prefixed will allow them to be distinguished from local variables. Some regex'es used (plus manually fixing the remaining stuff): In src/mame/... state->([a-zA-Z_][^_][a-zA-Z0-9_]*) state->m_\1 state->([^m]_[a-zA-Z0-9_]*) state->m_\1 state->m_save_item state->save_item state->m_save_pointer state->save_pointer (AM_BASE_MEMBER *\( *[a-zA-Z0-9_]+ *, *)([a-zA-Z_][^_]) \1m_\2 (AM_BASE_SIZE_MEMBER *\( *[a-zA-Z0-9_]+ *, *)([a-zA-Z_][^_][a-zA-Z0-9_]* *, *)([a-zA-Z_][^_]) \1m_\2m_\3 (AM_SIZE_MEMBER *\( *[a-zA-Z0-9_]+ *, *)([a-zA-Z_][^_]) \1m_\2 m__ m_ In src/mame/includes/... (\t[a-zA-Z0-9_<>]+[ \t]+[&*]*[ \t]*)([a-zA-Z_][^_][][a-zA-Z0-9_]*;)$ \1m_\2 (\t[a-zA-Z0-9_<>]+[ \t]*[&*]*[ \t]+)([a-zA-Z_][^_][][a-zA-Z0-9_]*;)$ \1m_\2
Diffstat (limited to 'src/mame/includes/triplhnt.h')
-rw-r--r--src/mame/includes/triplhnt.h28
1 files changed, 14 insertions, 14 deletions
diff --git a/src/mame/includes/triplhnt.h b/src/mame/includes/triplhnt.h
index fcb557f7279..702e18db386 100644
--- a/src/mame/includes/triplhnt.h
+++ b/src/mame/includes/triplhnt.h
@@ -22,20 +22,20 @@ public:
triplhnt_state(running_machine &machine, const driver_device_config_base &config)
: driver_device(machine, config) { }
- UINT8 cmos[16];
- UINT8 da_latch;
- UINT8 misc_flags;
- UINT8 cmos_latch;
- UINT8 hit_code;
- UINT8* playfield_ram;
- UINT8* vpos_ram;
- UINT8* hpos_ram;
- UINT8* code_ram;
- UINT8* orga_ram;
- int sprite_zoom;
- int sprite_bank;
- bitmap_t* helper;
- tilemap_t* bg_tilemap;
+ UINT8 m_cmos[16];
+ UINT8 m_da_latch;
+ UINT8 m_misc_flags;
+ UINT8 m_cmos_latch;
+ UINT8 m_hit_code;
+ UINT8* m_playfield_ram;
+ UINT8* m_vpos_ram;
+ UINT8* m_hpos_ram;
+ UINT8* m_code_ram;
+ UINT8* m_orga_ram;
+ int m_sprite_zoom;
+ int m_sprite_bank;
+ bitmap_t* m_helper;
+ tilemap_t* m_bg_tilemap;
};