~ubuntu-branches/ubuntu/wily/flrig/wily

« back to all changes in this revision

Viewing changes to src/rigs/FTdx1200.cxx

  • Committer: Package Import Robot
  • Author(s): Kamal Mostafa
  • Date: 2014-10-25 11:17:10 UTC
  • mfrom: (1.1.1)
  • Revision ID: package-import@ubuntu.com-20141025111710-n32skgya3l9u1brw
Tags: 1.3.17-1
* New upstream release (Closes: #761839)
* Debian Standards-Version: 3.9.6

Show diffs side-by-side

added added

removed removed

Lines of Context:
757
757
        if (p != string::npos) {
758
758
                if (p + 3 < replystr.length()) {
759
759
                        int md = replystr[p+3];
760
 
                        if (md <= '9') md = md - '1';
761
 
                        else md = 9 + md - 'A';
 
760
                        if (md <= '9') md -= '1';
 
761
                        else md = md - 'B' + 9;
762
762
                        modeA = md;
763
763
                }
764
764
        }
796
796
        if (p != string::npos) {
797
797
                if (p + 3 < replystr.length()) {
798
798
                        int md = replystr[p+3];
799
 
                        if (md <= '9') md = md - '1';
800
 
                        else md = 9 + md - 'A';
 
799
                        if (md <= '9') md -= '1';
 
800
                        else md = md - 'B' + 9;
801
801
                        modeB = md;
802
802
                }
803
803
        }