Mercurial > public > mk2
comparison code_part1/OSTC_code_asm_part1/pled_outputs.asm @ 199:f5e9db793dd3
Minor missing translations
+ MOD/END/EAD in translation table.
+ ON/OFF (French).
+ Desat in logbook.
+ Set date/time menu positionning.
+ Simulator menu positionning.
author | JeanDo |
---|---|
date | Mon, 14 Feb 2011 17:23:08 +0100 |
parents | caf6153b26cb |
children | aad4f6e25c2d |
comparison
equal
deleted
inserted
replaced
198:1d98f30ed44e | 199:f5e9db793dd3 |
---|---|
503 output_8 | 503 output_8 |
504 STRCAT_PRINT "% " | 504 STRCAT_PRINT "% " |
505 call PLED_standard_color | 505 call PLED_standard_color |
506 return | 506 return |
507 | 507 |
508 ;============================================================================= | |
509 ; Update simulator menu with time/depth | |
510 ; Note: because translations might change a bit the string length, we reprint | |
511 ; that part of the mask to be sure the numbers fit in the right places. | |
508 PLED_simulator_data: | 512 PLED_simulator_data: |
513 WIN_LEFT .20 | |
509 WIN_TOP .65 | 514 WIN_TOP .65 |
510 WIN_LEFT .112 ; +7 for spanish. | 515 WIN_FONT FT_SMALL |
511 WIN_FONT FT_SMALL | 516 call PLED_standard_color |
512 call PLED_standard_color | 517 lfsr FSR2,letter |
513 lfsr FSR2,letter | 518 OUTPUTTEXTH .277 ; Bottom Time: |
514 movff logbook_temp1,lo | 519 |
520 movff logbook_temp1,lo | |
515 bsf leftbind | 521 bsf leftbind |
516 output_8 | 522 output_8 |
517 bcf leftbind | 523 bcf leftbind |
518 STRCAT_PRINT "min " | 524 STRCAT_PRINT "min " |
519 | 525 |
526 WIN_LEFT .20 | |
520 WIN_TOP .95 | 527 WIN_TOP .95 |
521 WIN_LEFT .100 | 528 lfsr FSR2,letter |
522 WIN_FONT FT_SMALL | 529 OUTPUTTEXTH .278 ; Max. Depth: |
523 call PLED_standard_color | 530 |
524 lfsr FSR2,letter | |
525 movff logbook_temp2,lo | 531 movff logbook_temp2,lo |
526 bsf leftbind | 532 bsf leftbind |
527 output_8 | 533 output_8 |
528 bcf leftbind | 534 bcf leftbind |
529 STRCAT_PRINT "m " | 535 STRCAT_PRINT "m " |
530 return | 536 return |
537 | |
538 ;============================================================================= | |
531 | 539 |
532 PLED_display_velocity: | 540 PLED_display_velocity: |
533 ; btfsc multi_gf_display ; Is the Multi-GF Table displayed? | 541 ; btfsc multi_gf_display ; Is the Multi-GF Table displayed? |
534 ; return ; Yes, No update and return! | 542 ; return ; Yes, No update and return! |
535 | 543 |