tilemap.h: remove temporary assert (nw)

This commit is contained in:
Alex W. Jackson 2014-11-10 21:08:29 -05:00
parent 8b46b5d928
commit 49c243d09a

View File

@ -443,7 +443,6 @@ struct tile_data
{ {
gfx_element *gfx = decoder->gfx(_gfxnum); gfx_element *gfx = decoder->gfx(_gfxnum);
int code = rawcode % gfx->elements(); int code = rawcode % gfx->elements();
assert(rawcolor < gfx->colors()); // TEMPORARY ASSERT
pen_data = gfx->get_data(code); pen_data = gfx->get_data(code);
palette_base = gfx->colorbase() + gfx->granularity() * (rawcolor % gfx->colors()); palette_base = gfx->colorbase() + gfx->granularity() * (rawcolor % gfx->colors());
flags = _flags; flags = _flags;