Mercurial > public > hwos_code
comparison src/customview.asm @ 525:00df86a5ac01
BUGFIX: Do not show GF in divemode for non-GF deco mode
author | heinrichsweikamp |
---|---|
date | Sat, 05 Aug 2017 15:04:08 +0200 |
parents | d339c9e1175d |
children | d36f9fca10ae |
comparison
equal
deleted
inserted
replaced
524:d2e52e6e1604 | 525:00df86a5ac01 |
---|---|
504 ; ppO2 value | 504 ; ppO2 value |
505 call TFT_mask_ppo2 | 505 call TFT_mask_ppo2 |
506 call TFT_display_ppo2_val | 506 call TFT_display_ppo2_val |
507 | 507 |
508 ; current GF value | 508 ; current GF value |
509 extern char_I_deco_model | |
510 TSTOSS char_I_deco_model ; 0 = ZH-L16, 1 = ZH-L16-GF | |
511 bra customview_toggle_exit ; No GF info for non-GF modes | |
512 ; current GF value | |
509 call TFT_gf_mask_cGF ; Setup Mask - current GF only | 513 call TFT_gf_mask_cGF ; Setup Mask - current GF only |
510 call TFT_gf_info ; Show GF informations | 514 call TFT_gf_info ; Show GF informations |
511 bra customview_toggle_exit | 515 bra customview_toggle_exit |
516 | |
512 | 517 |
513 ;============================================================================= | 518 ;============================================================================= |
514 ; Show next customview (and delete this flag) | 519 ; Show next customview (and delete this flag) |
515 global customview_toggle | 520 global customview_toggle |
516 customview_toggle: | 521 customview_toggle: |