Skip to content

Commit 68e82ab

Browse files
authored
sinclair/specnext_tiles.cpp: Fixed tiles again (#14249)
1 parent c2abf66 commit 68e82ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mame/sinclair/specnext_tiles.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,11 +73,11 @@ TILE_GET_INFO_MEMBER(specnext_tiles_device::get_tile_info)
7373
if (BIT(m_control, 1))
7474
{
7575
code |= BIT(attr, 0) << 8;
76-
category = BIT(m_control, 0) ? 2 : 1;
76+
category = BIT(m_control, 0) ? 1 : 2;
7777
}
7878
else
7979
{
80-
category = BIT(attr, 0) ? 2 : 1;
80+
category = BIT(attr, 0) ? 1 : 2;
8181
}
8282
tileinfo.category = category;
8383

0 commit comments

Comments
 (0)