summaryrefslogtreecommitdiff
path: root/GUI.cpp
diff options
context:
space:
mode:
authorJapa2011-07-20 17:14:14 +0000
committerJapa2011-07-20 17:14:14 +0000
commitd73d5fe58beefb57c8301f934ea01e868a9c10d3 (patch)
treedd860adc1b0a39cb10c3b3e82adff03a5287d44b /GUI.cpp
parentaee9dc6758120d57a8fabc013a16c82f6682099c (diff)
downloadstonesense-d73d5fe58beefb57c8301f934ea01e868a9c10d3.tar.gz
stonesense-d73d5fe58beefb57c8301f934ea01e868a9c10d3.tar.bz2
stonesense-d73d5fe58beefb57c8301f934ea01e868a9c10d3.tar.xz
Sucessfully connected to DF. some bugs remain, but who cares. we got a DF connection.
Diffstat (limited to 'GUI.cpp')
-rw-r--r--GUI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/GUI.cpp b/GUI.cpp
index a674273..82ddd26 100644
--- a/GUI.cpp
+++ b/GUI.cpp
@@ -763,7 +763,7 @@ void paintboard(){
draw_textf_border(font, al_map_rgb(255,255,255), 10,al_get_font_line_height(font), 0, "%i,%i,%i, r%i", DisplayedSegmentX,DisplayedSegmentY,DisplayedSegmentZ, DisplayedRotation);
if(config.debug_mode){
- draw_textf_border(font, al_map_rgb(255,255,255), 10, 3*al_get_font_line_height(font), 0, "Map Read Time: %ds", viewedSegment->read_time);
+ draw_textf_border(font, al_map_rgb(255,255,255), 10, 3*al_get_font_line_height(font), 0, "Map Read Time: %dms", viewedSegment->read_time);
draw_textf_border(font, al_map_rgb(255,255,255), 10, 4*al_get_font_line_height(font), 0, "Map Beautification Time: %ims", ClockedTime);
draw_textf_border(font, al_map_rgb(255,255,255), 10, 2*al_get_font_line_height(font), 0, "FPS: %.2f", 1.0/time_since_last_frame);
draw_textf_border(font, al_map_rgb(255,255,255), 10, 5*al_get_font_line_height(font), 0, "Draw: %ims", DrawTime);