/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 21:24:17 UTC
  • Revision ID: tim@ed.am-20120321212417-dnba5l1oheddeyxw
fixed time centring and display in settings mode

Show diffs side-by-side

added added

removed removed

62
62
        }
63
63
}
64
64
 
65
 
 
66
65
static void reset_messages()
67
66
{
68
67
        Text::reset_message( 0, Text::MODE_TOP | Text::MODE_ALL );
105
104
        switch( _item ) {
106
105
        case TIME_SET_IDX:
107
106
                if( _part == 0 && flash )
108
 
                        str0.print( "  " );
 
107
                        str0.print( ( Time::get_hours() % 12 ) < 10? " " : "  " );
109
108
                else
110
 
                        str0.format( "%2d", Time::get_hours() % 12 );
 
109
                        str0.format( "%d", Time::get_hours() % 12 );
111
110
                str0.print( ':' );
112
111
                if( _part == 1 && flash )
113
112
                        str0.print( "  " );
118
117
                        str0.print( "  " );
119
118
                else
120
119
                        str0.format( "%02d", Time::get_seconds() );
 
120
                str0.print( ' ' );
121
121
                if( _part == 0 && flash )
122
122
                        str0.print( "  " );
123
123
                else