X-Git-Url: https://harrygodden.com/git/?a=blobdiff_plain;f=world_routes.c;h=33d84db5cb8ff2a80ada0c8e2064634493afa3e5;hb=6e96ba64e805ea8a39ca46171e28426c6bc86ab6;hp=5f6d283a50dc0183621be8ef968c1fba4d56b13b;hpb=00653e446d6b1310fa89d3aace70800f9fef4122;p=carveJwlIkooP6JGAAIwe30JlM.git diff --git a/world_routes.c b/world_routes.c index 5f6d283..33d84db 100644 --- a/world_routes.c +++ b/world_routes.c @@ -541,7 +541,7 @@ static void world_gen_routes_ent_init( world_instance *world ){ } if( (gate->flags & k_ent_gate_linked) & - !(gate->flags & k_ent_gate_nonlocal_DELETED) ){ + !(gate->flags & k_ent_gate_nonlocal) ){ gate = mdl_arritm(&world->ent_gate, gate->target ); for( u32 k=0; k<4; k++ ){ @@ -994,7 +994,7 @@ static void render_world_routes( world_instance *world, for( u32 j=0; jent_gate); j ++ ){ ent_gate *gate = mdl_arritm( &world->ent_gate, j ); - if( !(gate->flags & k_ent_gate_nonlocal_DELETED) ) + if( !(gate->flags & k_ent_gate_nonlocal) ) render_gate_markers( mmdl, i, gate ); } }