Apply Wayne's suggestion for better error recov

No need to exit the draw routine on a bad layer, we can skip that layer
and continue processing the valid elements
This commit is contained in:
Seth Hillbrand 2022-07-26 11:06:29 -07:00
parent cb6a2552d9
commit 2245e99a89
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ void VIEW_GROUP::ViewDraw( int aLayer, VIEW* aView ) const
for( int i = 0; i < item_layers_count; i++ )
{
wxCHECK_RET( item_layers[i] <= LAYER_ID_COUNT, wxT( "Invalid item layer" ) );
wxCHECK2_MSG( item_layers[i] <= LAYER_ID_COUNT, continue, wxT( "Invalid item layer" ) );
if( layer_item_map.count( item_layers[i] ) == 0 )
{