diff options
| author | Japa | 2011-08-22 14:14:04 +0000 |
|---|---|---|
| committer | Japa | 2011-08-22 14:14:04 +0000 |
| commit | e30a6661982aad7614e12e3bb66248992864d6b7 (patch) | |
| tree | c39f8f7c59c9b5ca544d110e2ca6a5d2cdcdd562 /GUI.cpp | |
| parent | 3082298368e67933947d00d005821019ded2da81 (diff) | |
| download | stonesense-e30a6661982aad7614e12e3bb66248992864d6b7.tar.gz stonesense-e30a6661982aad7614e12e3bb66248992864d6b7.tar.bz2 stonesense-e30a6661982aad7614e12e3bb66248992864d6b7.tar.xz | |
Got tile occlusion fully working.
Todo: transparent glass.
Diffstat (limited to 'GUI.cpp')
| -rw-r--r-- | GUI.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -764,7 +764,7 @@ void paintboard(){ 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: %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, 4*al_get_font_line_height(font), 0, "Map Beautification Time: %ims", viewedSegment->beautify_time);
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);
draw_textf_border(font, al_map_rgb(255,255,255), 10, 6*al_get_font_line_height(font), 0, "D1: %i", blockFactory.getPoolSize());
|
