mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-28 16:31:15 +00:00
Increase the amount the menu background has to slide, and slightly increase the speed to compensate
Subjective, but means no corner of the image will be poking in over the fade.
This commit is contained in:
parent
75257fbdd2
commit
380a015e82
1 changed files with 2 additions and 2 deletions
|
|
@ -162,7 +162,7 @@ static fixed_t bgImageScroll = 0;
|
|||
static char bgImageName[9];
|
||||
|
||||
#define MENUBG_TEXTSCROLL 6
|
||||
#define MENUBG_IMAGESCROLL 32
|
||||
#define MENUBG_IMAGESCROLL 36
|
||||
|
||||
void M_UpdateMenuBGImage(boolean forceReset)
|
||||
{
|
||||
|
|
@ -181,7 +181,7 @@ void M_UpdateMenuBGImage(boolean forceReset)
|
|||
|
||||
if (forceReset == false && strcmp(bgImageName, oldName))
|
||||
{
|
||||
bgImageScroll = (BASEVIDWIDTH / 2)*FRACUNIT;
|
||||
bgImageScroll = (3 * BASEVIDWIDTH) * (FRACUNIT / 4);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue