mirror of
https://github.com/SourMesen/Mesen2.git
synced 2025-04-02 10:21:44 -04:00
Debugger: PCE - Tilemap viewer - Fixed scroll overlay Y position
This commit is contained in:
parent
0dbe874fa4
commit
d3afd0dbf2
1 changed files with 2 additions and 2 deletions
|
@ -89,8 +89,8 @@ DebugTilemapInfo PceVdcTools::InternalGetTilemap(GetTilemapOptions options, PceV
|
|||
result.RowCount = state.HvLatch.RowCount;
|
||||
result.TilemapAddress = 0;
|
||||
result.TilesetAddress = 0;
|
||||
result.ScrollX = state.HvLatch.BgScrollX;
|
||||
result.ScrollY = state.HvLatch.BgScrollY;
|
||||
result.ScrollX = state.HvReg.BgScrollX;
|
||||
result.ScrollY = state.HvReg.BgScrollY;
|
||||
result.ScrollWidth = (state.HvLatch.HorizDisplayWidth + 1) * 8;
|
||||
result.ScrollHeight = std::min<uint32_t>(242, state.HvLatch.VertDisplayWidth);
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue