diff options
author | 2012-09-17 15:00:31 +0000 | |
---|---|---|
committer | 2012-09-17 15:00:31 +0000 | |
commit | 5ddbca3e7a2327786fd92cc7443dd84257ba889a (patch) | |
tree | f6eb4b827714a8658ea246336342b03d6d7938e0 /src/mess/includes/ti85.h | |
parent | f27b07d0822f4ff52b95a1a0143f3c2313ea02ce (diff) |
Modernized screen update calls (no whatsnew)
Diffstat (limited to 'src/mess/includes/ti85.h')
-rw-r--r-- | src/mess/includes/ti85.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mess/includes/ti85.h b/src/mess/includes/ti85.h index 41483e50409..7712ed4c5d6 100644 --- a/src/mess/includes/ti85.h +++ b/src/mess/includes/ti85.h @@ -101,6 +101,7 @@ public: DECLARE_PALETTE_INIT(ti82); DECLARE_MACHINE_START(ti86); DECLARE_MACHINE_START(ti83p); + UINT32 screen_update_ti85(screen_device &screen, bitmap_ind16 &bitmap, const rectangle &cliprect); }; @@ -120,7 +121,7 @@ SNAPSHOT_LOAD( ti8x ); /*----------- defined in video/ti85.c -----------*/ -SCREEN_UPDATE_IND16( ti85 ); + |