Mercurial > public > hwos_code
comparison src/p2_deco.c @ 635:9a64914a8fca
3.10 re-release addressing some minor issues and language fixes
author | heinrichsweikamp |
---|---|
date | Thu, 07 May 2020 09:12:59 +0200 |
parents | 4050675965ea |
children | 8c1f1f334275 |
comparison
equal
deleted
inserted
replaced
634:4050675965ea | 635:9a64914a8fca |
---|---|
3291 // Update the result only: | 3291 // Update the result only: |
3292 // - if an alternative plan is enabled, and | 3292 // - if an alternative plan is enabled, and |
3293 // - if a valid alternative plan TTS exists, and | 3293 // - if a valid alternative plan TTS exists, and |
3294 // - if it is not a bailout plan | 3294 // - if it is not a bailout plan |
3295 if( (deco_status & CALC_ALT ) ) | 3295 if( (deco_status & CALC_ALT ) ) |
3296 if( (int_O_TTS_alt & INT_FLAG_INVALID) ) | 3296 if( !(int_O_TTS_alt & INT_FLAG_INVALID) ) |
3297 if( !(deco_status & BAILOUT_MODE ) ) | 3297 if( !(deco_status & BAILOUT_MODE ) ) |
3298 { | 3298 { |
3299 if( int_O_TTS_alt < int_O_TTS_norm ) deco_info |= DECO_ZONE; | 3299 if( int_O_TTS_alt < int_O_TTS_norm ) deco_info |= DECO_ZONE; |
3300 if( int_O_TTS_alt > int_O_TTS_norm ) deco_info &= ~DECO_ZONE; | 3300 if( int_O_TTS_alt > int_O_TTS_norm ) deco_info &= ~DECO_ZONE; |
3301 } | 3301 } |