summaryrefslogtreecommitdiff
path: root/Dalos
diff options
context:
space:
mode:
Diffstat (limited to 'Dalos')
-rw-r--r--Dalos/Dalos.cc10
1 files changed, 7 insertions, 3 deletions
diff --git a/Dalos/Dalos.cc b/Dalos/Dalos.cc
index c08052d..4936caf 100644
--- a/Dalos/Dalos.cc
+++ b/Dalos/Dalos.cc
@@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
-/* $Id: Dalos.cc,v 1.20 2005-12-02 11:22:51 pixel Exp $ */
+/* $Id: Dalos.cc,v 1.21 2005-12-02 16:21:59 pixel Exp $ */
#include <SDL.h>
#include <SDL_thread.h>
@@ -266,7 +266,9 @@ class timer : public mogltk::widget {
Application->MainMenu->SetCaption(0, "I");
break;
}
- Application->MainMenu->SetCaption(3, String("FPS: ") + mogltk::engine::FPS());
+ String fps;
+ fps.set("FPS: %6.2f", mogltk::engine::FPS());
+ Application->MainMenu->SetCaption(3, fps);
return true;
}
return false;
@@ -330,7 +332,7 @@ virtual int startup() throw (GeneralException) {
console::create_console_thread();
CurrentConsole->move(0, Root->GetH() - CurrentConsole->GetH());
CurrentConsole->add_line("Dalos v0.1 - LUA console - Press ESC to show/hide it.");
- CurrentConsole->SetVisible(true);
+// CurrentConsole->SetVisible(true);
printer = new myprinter();
locker = new threaded_locker();
@@ -354,6 +356,8 @@ virtual int startup() throw (GeneralException) {
new hexview::hexview_keyevent;
new console::console_keyevent; // Should be one of the last
+ new mogltk::widgets::InputDialog(0, sh, MainPanel, "Test", "blah blah blah");
+
// And launching the main loop
Root->mainloop();