カテゴリ 重要度 ステータス 解決状況 登録日時 最終更新
グラフィック認証済み未処理2013-01-16 06:472016-12-26 09:31
 
テスターM.A.S.H.担当者 ソースvsystem/fromance.cpp
バージョン0.148発生バージョン0.114u3修正バージョン
修正コミットプルリク
フラグ
セット All games in fromance.c
セット詳細
fromance - アイドル麻雀 ファイナルロマンス (日本版)
 
概 要画面が上に1ドットくらいずれている。
詳 細The screen is shifted 1 pixels up since MAME 0.114u3. In the video driver the values for m_scrolly in WRITE8_HANDLER( fromance_scroll_w )
were changed from 0xfa to 0xf9. If you changed them back to 0xfa the screen is fixed.


Change in video\fromance.c lines 228 and 234 from

m_scrolly[1] = (data + (((m_gfxreg & 0x04) >> 2) * 0x100) - 0xf9);
to
m_scrolly[1] = (data + (((m_gfxreg & 0x04) >> 2) * 0x100) - 0xfa);

and

m_scrolly[0] = (data + (((m_gfxreg & 0x10) >> 4) * 0x100) - 0xf9);
to
m_scrolly[0] = (data + (((m_gfxreg & 0x10) >> 4) * 0x100) - 0xfa);
再現手順 
追加情報 
 
添付ファイルgif filefromance 0144u2 0114u3.gif (2013-01-16 06:47)