X-Git-Url: https://jasonwoof.com/gitweb/?a=blobdiff_plain;f=main.c;h=c6d48e21f56e6d400e9685b6d97ec7e60025473b;hb=ed073069f4b2813fee191de449e51cc88cd21935;hp=b7332c5beb00b665ecc65f118c8ee847ed847ef7;hpb=a71a81a281923a4dba48a01e1c448d3a44b60bf0;p=vor.git diff --git a/main.c b/main.c index b7332c5..c6d48e2 100644 --- a/main.c +++ b/main.c @@ -32,6 +32,7 @@ #include "args.h" #include "common.h" +#include #include "vorconfig.h" #include "dust.h" #include "file.h" @@ -338,6 +339,22 @@ draw_dots(void) { } SDL_Surface * +load_image_alpha(char *filename) +{ + SDL_Surface *tmp, *img = NULL; + char *s = add_data_path(filename); + if(s) { + tmp = IMG_Load(s); + free(s); + if(tmp) { + img = SDL_DisplayFormatAlpha(tmp); + SDL_FreeSurface(tmp); + } + } + return img; +} + +SDL_Surface * load_image(char *filename) { SDL_Surface *tmp, *img = NULL; @@ -430,12 +447,12 @@ init(void) { } // Load the banners - NULLERROR(surf_b_variations = load_image("b_variations.png")); - NULLERROR(surf_b_on = load_image("b_on.png")); - NULLERROR(surf_b_rockdodger = load_image("b_rockdodger.png")); + NULLERROR(surf_b_variations = load_image_alpha("b_variations.png")); + NULLERROR(surf_b_on = load_image_alpha("b_on.png")); + NULLERROR(surf_b_rockdodger = load_image_alpha("b_rockdodger.png")); - NULLERROR(surf_b_game = load_image("b_game.png")); - NULLERROR(surf_b_over = load_image("b_over.png")); + NULLERROR(surf_b_game = load_image_alpha("b_game.png")); + NULLERROR(surf_b_over = load_image_alpha("b_over.png")); // Load the life indicator (small ship) graphic. NULLERROR(surf_life = load_image("life.png")); @@ -534,7 +551,7 @@ draw_title_page(void) x = (XSIZE-font_width(text))/2 + cos(fadetimer/4.5)*10; font_write(x,YSIZE-100 + cos(fadetimer/3)*5,text); - text = "Version " VERSION; + text = "Version " PACKAGE_VERSION; x = (XSIZE-font_width(text))/2 + sin(fadetimer/4.5)*10; font_write(x,YSIZE-50 + sin(fadetimer/2)*5,text); }