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:
toaster 2023-08-02 18:41:54 +01:00
parent 75257fbdd2
commit 380a015e82

View file

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