comparison src/tft_outputs.asm @ 517:d339c9e1175d

CHANGE: Show actual GF (Not relative) in custom views in dive mode
author heinrichsweikamp
date Thu, 03 Aug 2017 17:03:05 +0200
parents 2ef8cf6b320d
children 0d1cda9f2d43
comparison
equal deleted inserted replaced
516:2ef8cf6b320d 517:d339c9e1175d
3397 TFT_gf_info: 3397 TFT_gf_info:
3398 call TFT_standard_color 3398 call TFT_standard_color
3399 ; Show current GF 3399 ; Show current GF
3400 movff char_O_gradient_factor,lo ; gradient factor absolute (Non-GF model) 3400 movff char_O_gradient_factor,lo ; gradient factor absolute (Non-GF model)
3401 movff char_I_deco_model,hi 3401 movff char_I_deco_model,hi
3402 decfsz hi,F ; jump over next line if char_I_deco_model == 1
3403 movff char_O_relative_gradient_GF,lo ; gradient factor relative (GF model)
3404 WIN_STD dm_custom_currentgf_column, dm_custom_currentgf_row 3402 WIN_STD dm_custom_currentgf_column, dm_custom_currentgf_row
3405 output_8 3403 output_8
3406 STRCAT_PRINT "%" 3404 STRCAT_PRINT "%"
3407 return 3405 return
3408 3406