summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author angelosa <salese_corp_ltd@email.it>2015-06-30 23:57:46 +0200
committer angelosa <salese_corp_ltd@email.it>2015-06-30 23:57:46 +0200
commitf2891c8e5a7a3094165aae89e2f945b93f7d6ccf (patch)
tree3ae7c50610bbd6b4380720ec404e465ed66c804e
parent201873683ee5962cc06b1cfcbe3f8c73dc243966 (diff)
erase_op actually clears only the 3d video buffer. Fixes fade-out in Top Landing.
-rw-r--r--src/mame/video/taitoair.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/taitoair.c b/src/mame/video/taitoair.c
index 600beaf048c..16af0809cd7 100644
--- a/src/mame/video/taitoair.c
+++ b/src/mame/video/taitoair.c
@@ -423,7 +423,7 @@ void taitoair_state::fb_erase_op()
cliprect.max_y = m_screen->height() - 1;
m_framebuffer[0]->fill(0, cliprect);
- m_framebuffer[1]->fill(0, cliprect);
+ //m_framebuffer[1]->fill(0, cliprect);
}
void taitoair_state::fb_fill_op()