/elec/propeller-clock

To get this branch, use:
bzr branch http://bzr.ed.am/elec/propeller-clock

« back to all changes in this revision

Viewing changes to src/settings_mode.cc

  • Committer: Tim Marston
  • Date: 2012-03-21 20:35:28 UTC
  • Revision ID: tim@ed.am-20120321203528-wfhpych1tub75rgj
fixed bug initialising text services on mode activation

Show diffs side-by-side

added added

removed removed

42
42
{
43
43
        switch( _item )
44
44
        {
45
 
        case TIME_SET_IDX:
 
45
/*      case TIME_SET_IDX:
46
46
                switch( _part ) {
47
47
                case 0: Time::inc_hours(); break;
48
48
                case 1: Time::inc_minutes(); break;
55
55
                case 1: Time::inc_month(); break;
56
56
                case 2: Time::inc_day(); break;
57
57
                }
58
 
                break;
 
58
                break;*/
59
59
        case FONT_SET_IDX:
60
60
                TextRenderer::inc_font();
61
61
                break;
104
104
        switch( _item ) {
105
105
        case TIME_SET_IDX:
106
106
                if( _part == 0 && flash )
107
 
                        str0.print( ( Time::get_hours() % 12 ) < 10? " " : "  " );
 
107
                        str0.print( "  " );
108
108
                else
109
 
                        str0.format( "%d", Time::get_hours() % 12 );
 
109
                        str0.format( "%2d", Time::get_hours() % 12 );
110
110
                str0.print( ':' );
111
111
                if( _part == 1 && flash )
112
112
                        str0.print( "  " );
117
117
                        str0.print( "  " );
118
118
                else
119
119
                        str0.format( "%02d", Time::get_seconds() );
120
 
                str0.print( ' ' );
121
120
                if( _part == 0 && flash )
122
121
                        str0.print( "  " );
123
122
                else