mirror of
https://github.com/holub/mame
synced 2025-04-23 08:49:55 +03:00
tmap038.cpp: Fix clang build [-Werror,-Wsometimes-uninitialized]; if (X) else if (!X) is ridiculous (nw)
This commit is contained in:
parent
866b52fda9
commit
ad27643c07
@ -159,7 +159,7 @@ TILE_GET_INFO_MEMBER(tilemap038_device::get_tile_info)
|
||||
if (!m_038_cb.isnull())
|
||||
m_038_cb(true, color, pri, code);
|
||||
}
|
||||
else if (!m_tiledim)
|
||||
else
|
||||
{
|
||||
tile = (m_vram_8x8 != nullptr) ? ((m_vram_8x8[tile_index * 2] << 16) + m_vram_8x8[(tile_index * 2) + 1]) : 0;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user