fix typo
authorJim Morris <morris@wolfman.com>
Thu, 3 Oct 2013 20:30:59 +0000 (13:30 -0700)
committerJim Morris <morris@wolfman.com>
Thu, 3 Oct 2013 20:33:00 +0000 (13:33 -0700)
src/modules/utils/panel/screens/WatchScreen.cpp

index 287c1ee..9a66d52 100644 (file)
@@ -209,7 +209,7 @@ void WatchScreen::display_menu_line(uint16_t line){
     switch( line ){
         case 0: this->panel->lcd->printf("H%03d/%03dc B%03d/%03dc", this->hotendtemp, this->hotendtarget, this->bedtemp, this->bedtarget); break;
         case 1: this->panel->lcd->printf("X%4d Y%4d Z%7.2f", (int)round(this->pos[0]), (int)round(this->pos[1]), this->pos[2]); break;
-        case 2: this->panel->lcd->printf("%3d%% %2ul:%02ul %3u%% sd", this->current_speed, this->elapsed_time/60, this->elapsed_time%60, this->sd_pcnt_played); break;
+        case 2: this->panel->lcd->printf("%3d%% %2lu:%02lu %3u%% sd", this->current_speed, this->elapsed_time/60, this->elapsed_time%60, this->sd_pcnt_played); break;
         case 3: this->panel->lcd->printf("%19s", this->get_status()); break;
     }
 }