* orange console warnings

This commit is contained in:
Garux 2018-03-21 04:12:06 +03:00
parent cf580963c2
commit fd656d274a

View File

@ -188,11 +188,12 @@ std::size_t Sys_Print( int level, const char* buf, std::size_t length ){
static GtkTextMark* end = gtk_text_buffer_create_mark( buffer, "end", &iter, FALSE );
const GdkColor yellow = { 0, 0xb0ff, 0xb0ff, 0x0000 };
// const GdkColor yellow = { 0, 0xb0ff, 0xb0ff, 0x0000 };
const GdkColor orange = { 0, 0xffff, 0x8888, 0x0000 };
const GdkColor red = { 0, 0xffff, 0x0000, 0x0000 };
static GtkTextTag* error_tag = gtk_text_buffer_create_tag( buffer, "red_foreground", "foreground-gdk", &red, 0 );
static GtkTextTag* warning_tag = gtk_text_buffer_create_tag( buffer, "yellow_foreground", "foreground-gdk", &yellow, 0 );
static GtkTextTag* warning_tag = gtk_text_buffer_create_tag( buffer, "yellow_foreground", "foreground-gdk", &orange, 0 );
static GtkTextTag* standard_tag = gtk_text_buffer_create_tag( buffer, "black_foreground", 0 );
GtkTextTag* tag;
switch ( level )