X-Git-Url: https://harrygodden.com/git/?p=fishladder.git;a=blobdiff_plain;f=fishladder.c;fp=fishladder.c;h=6b26da26e37f57da886563ed85addf4e7c79043b;hp=2bc927787b8c58973887175543ff0ca407d73f59;hb=a88dd793f4d80d9e8a9615b5fe5f6887f9b85069;hpb=fdc58fb6b2fddec9e179baaba53e059ae1e54a54 diff --git a/fishladder.c b/fishladder.c index 2bc9277..6b26da2 100644 --- a/fishladder.c +++ b/fishladder.c @@ -3289,14 +3289,14 @@ void vg_ui(void) gui_new_node(); { - gui_text( "Settings", 3 ); + gui_text( "SETTINGS", 2 ); } gui_end(); // Colour scheme selection ui_global_ctx.cursor[1] += 30; - gui_text( "Colour Scheme", 2 ); + gui_text( "Colour Scheme", 1 ); ui_global_ctx.cursor[1] += 25; gui_new_node(); @@ -3328,7 +3328,7 @@ void vg_ui(void) if( colour_set_id > 0 ) colour_set_id --; } - gui_text( "<", 2 ); + gui_text( "<", 1 ); gui_end_right(); ui_global_ctx.cursor[2] = 150; @@ -3337,7 +3337,7 @@ void vg_ui(void) gui_fill_rect( ui_global_ctx.cursor, 0x33ffffff ); ui_global_ctx.cursor[0] += 45; ui_global_ctx.cursor[1] += 6; - gui_text( (const char *[]){ "Normal", "Extra1", "Extra2" }[ colour_set_id ], 2 ); + gui_text( (const char *[]){ "Normal", "Extra1", "Extra2" }[ colour_set_id ], 1 ); } gui_end_right(); @@ -3347,7 +3347,7 @@ void vg_ui(void) if( colour_set_id < vg_list_size( colour_sets )-1 ) colour_set_id ++; } - gui_text( ">", 2 ); + gui_text( ">", 1 ); gui_end_down(); } gui_end_down(); @@ -3356,7 +3356,7 @@ void vg_ui(void) // TODO: remove code dupe ui_global_ctx.cursor[1] += 16; - gui_text( "Tile Theme", 2 ); + gui_text( "Tile Theme", 1 ); ui_global_ctx.cursor[1] += 20; gui_new_node(); @@ -3367,7 +3367,7 @@ void vg_ui(void) if( world_theme_id > 0 ) world_theme_id --; } - gui_text( "<", 2 ); + gui_text( "<", 1 ); gui_end_right(); ui_global_ctx.cursor[2] = 150; @@ -3376,7 +3376,7 @@ void vg_ui(void) gui_fill_rect( ui_global_ctx.cursor, 0x33ffffff ); ui_global_ctx.cursor[0] += 45; ui_global_ctx.cursor[1] += 6; - gui_text( world_themes[ world_theme_id ].name, 2 ); + gui_text( world_themes[ world_theme_id ].name, 1 ); } gui_end_right(); @@ -3386,7 +3386,7 @@ void vg_ui(void) if( world_theme_id < vg_list_size( world_themes )-1 ) world_theme_id ++; } - gui_text( ">", 2 ); + gui_text( ">", 1 ); gui_end_down(); } gui_end_down(); @@ -3510,7 +3510,6 @@ static int console_credits( int argc, char const *argv[] ) vg_info( " miniaudio MIT0 miniaud.io\n" ); vg_info( " QOI MIT phoboslab.org\n" ); vg_info( " STB library MIT nothings.org\n" ); - vg_info( " Weiholmir JustFredrik\n" ); vg_info( " Ubuntu Regular ubuntu.com\n" ); return 0; }