diff options
author | 2012-09-13 11:15:32 +0000 | |
---|---|---|
committer | 2012-09-13 11:15:32 +0000 | |
commit | 219e664785890f52079bae7e74543920d638796a (patch) | |
tree | 774d1ab1e7d87ae4d2c1ef335dcef24a28a7d7e8 /src/mess/includes/advision.h | |
parent | af9a5e817d3eefdda79e801056b29167ecbcdef9 (diff) |
Massive change, MACHINE_START\RESET, VIDEO_START\RESET and PALETTE_INIT changed to be members of state classes (no whatsnew)
Diffstat (limited to 'src/mess/includes/advision.h')
-rw-r--r-- | src/mess/includes/advision.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mess/includes/advision.h b/src/mess/includes/advision.h index 4a09e9c2db1..5cbbfe4925a 100644 --- a/src/mess/includes/advision.h +++ b/src/mess/includes/advision.h @@ -64,10 +64,11 @@ public: int m_sound_cmd; int m_sound_d; int m_sound_g; + virtual void palette_init(); }; /*----------- defined in video/advision.c -----------*/ -PALETTE_INIT( advision ); + #endif |