Ejemplo n.º 1
0
void Framework::open_log_window()
{
   if (textlog) return;

   textlog = al_open_native_text_log("Log", ALLEGRO_TEXTLOG_MONOSPACE);
   al_register_event_source(event_queue, al_get_native_text_log_event_source(textlog));
}
Ejemplo n.º 2
0
void open_log_wnd() 
{
	al_tex_log = al_open_native_text_log("Log", ALLEGRO_TEXTLOG_MONOSPACE); 	
}
Ejemplo n.º 3
0
void open_log_monospace(void)
{
   if (al_init_native_dialog_addon()) {
      textlog = al_open_native_text_log("Log", ALLEGRO_TEXTLOG_MONOSPACE);
   }
}
Ejemplo n.º 4
0
void open_log(void)
{
   if (al_init_native_dialog_addon()) {
      textlog = al_open_native_text_log("Log", 0);
   }
}
Ejemplo n.º 5
0
void open_log_monospace(void)
{
   textlog = al_open_native_text_log("Log", ALLEGRO_TEXTLOG_MONOSPACE);
}
Ejemplo n.º 6
0
void open_log(void)
{
   textlog = al_open_native_text_log("Log", 0);
}