Re: Cleanup in route, wegbauer
Reply #2 –
Do you mean route_t::rdwr? I don't know, what there should be changed.
I didn't get a "out of bounds". But indeed, these two lines was wrong in my patch. Thank you.
Changed into:
@@ -2581,7 +2581,7 @@
while( distance > 0 ) {
- if( route_index >= route.get_max_n() ) {
+ if( route_index >= route.get_count() ) {
return false;
}
@@ -2652,7 +2652,7 @@
time_overtaking = (time_overtaking << 16)/akt_speed;
while ( time_overtaking > 0 ) {
- if ( route_index >= route.get_max_n() ) {
+ if ( route_index >= route.get_count() ) {
return false;
}