Fixed copyright text in title screen.
This commit is contained in:
parent
4a2b05b6d6
commit
ee3ba27fe8
22
src/title.c
22
src/title.c
|
@ -379,19 +379,15 @@ int title_show()
|
|||
selectedOption = 4;
|
||||
}
|
||||
|
||||
if (!skip)
|
||||
{
|
||||
gfx_renderString("Copyright Parallel Realities 2003",
|
||||
5, gfx_background->h - 60, FONT_WHITE, 0, gfx_background);
|
||||
gfx_renderString("Copyright Guus Sliepen, Astrid S. de Wijn and others 2012",
|
||||
5, gfx_background->h - 40, FONT_WHITE, 0, gfx_background);
|
||||
gfx_renderString("Copyright 2015-2017 Julie Marchant",
|
||||
5, gfx_background->h - 20, FONT_WHITE, 0, gfx_background);
|
||||
gfx_renderString(buildVersion, gfx_background->w - 6 - strlen(buildVersion) * 9,
|
||||
gfx_background->h - 20, FONT_WHITE, 0, gfx_background);
|
||||
screen_addBuffer(0, 0, screen->w, screen->h);
|
||||
skip = 1;
|
||||
}
|
||||
gfx_renderString("Copyright Parallel Realities 2003",
|
||||
5, gfx_background->h - 60, FONT_WHITE, 0, gfx_background);
|
||||
gfx_renderString("Copyright Guus Sliepen, Astrid S. de Wijn and others 2012",
|
||||
5, gfx_background->h - 40, FONT_WHITE, 0, gfx_background);
|
||||
gfx_renderString("Copyright 2015-2017 Julie Marchant",
|
||||
5, gfx_background->h - 20, FONT_WHITE, 0, gfx_background);
|
||||
gfx_renderString(buildVersion, gfx_background->w - 6 - strlen(buildVersion) * 9,
|
||||
gfx_background->h - 20, FONT_WHITE, 0, gfx_background);
|
||||
screen_addBuffer(0, 0, screen->w, screen->h);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue