diff --git a/data/g2.dat b/data/g2.dat index 727bc37f26..551a8d2ef6 100644 Binary files a/data/g2.dat and b/data/g2.dat differ diff --git a/resources/g2/0.png b/resources/g2/0.png new file mode 100644 index 0000000000..f99b17660d Binary files /dev/null and b/resources/g2/0.png differ diff --git a/resources/g2/1.png b/resources/g2/1.png new file mode 100644 index 0000000000..75686931c2 Binary files /dev/null and b/resources/g2/1.png differ diff --git a/src/sprites.h b/src/sprites.h index 1993c61202..5da29d9ff7 100644 --- a/src/sprites.h +++ b/src/sprites.h @@ -347,7 +347,8 @@ enum { SPR_CREDITS_INFOGRAMES = 23230, SPR_G2_BEGIN = 324288, - SPR_G2_LOGO = SPR_G2_BEGIN + 0 + SPR_G2_LOGO = SPR_G2_BEGIN + 0, + SPR_G2_TITLE = SPR_G2_BEGIN + 1 }; #endif diff --git a/src/windows/title_logo.c b/src/windows/title_logo.c index 7ec8660e9c..afa52c9ea1 100644 --- a/src/windows/title_logo.c +++ b/src/windows/title_logo.c @@ -102,7 +102,9 @@ static void window_title_logo_paint() window_paint_get_registers(w, dpi); // gfx_draw_sprite(dpi, SPR_MENU_LOGO, w->x, w->y, 0); - gfx_draw_sprite(dpi, SPR_G2_LOGO, w->x, w->y, 0); + int x = 2, y = 2; + gfx_draw_sprite(dpi, SPR_G2_LOGO, w->x + x, w->y + y, 0); + gfx_draw_sprite(dpi, SPR_G2_TITLE, w->x + x + 104, w->y + y + 18, 0); window_title_logo_draw_expansion_packs(dpi); }