1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-15 11:03:00 +01:00

Merge pull request #1094 from trigger-death/new-title-logo

Changed Title Logo
This commit is contained in:
Ted John
2015-05-19 14:18:22 +01:00
5 changed files with 5 additions and 2 deletions

Binary file not shown.

BIN
resources/g2/0.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.5 KiB

BIN
resources/g2/1.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.2 KiB

View File

@@ -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

View File

@@ -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);
}