diff --git a/src/mame/sinclair/specnext_tiles.cpp b/src/mame/sinclair/specnext_tiles.cpp index 6b055a74221d9..5cf55b0c0f441 100644 --- a/src/mame/sinclair/specnext_tiles.cpp +++ b/src/mame/sinclair/specnext_tiles.cpp @@ -73,11 +73,11 @@ TILE_GET_INFO_MEMBER(specnext_tiles_device::get_tile_info) if (BIT(m_control, 1)) { code |= BIT(attr, 0) << 8; - category = BIT(m_control, 0) ? 2 : 1; + category = BIT(m_control, 0) ? 1 : 2; } else { - category = BIT(attr, 0) ? 2 : 1; + category = BIT(attr, 0) ? 1 : 2; } tileinfo.category = category;