diff --git a/sfall/HRP/MoviesScreen.cpp b/sfall/HRP/MoviesScreen.cpp index 57cc65c2..e3261447 100644 --- a/sfall/HRP/MoviesScreen.cpp +++ b/sfall/HRP/MoviesScreen.cpp @@ -41,6 +41,10 @@ static void __fastcall SetMovieSize() { long aspectH = sHeight; long x = 0; long y = 0; + + float movieAspect = (float)bW / (float)bH; + float marginHeight = (sHeight - (sWidth / movieAspect)) / 2; + if (marginHeight < subtitleHeight) aspectH -= subtitleHeight; // reserve space Image::GetAspectSize(bW, bH, &x, &y, aspectW, aspectH); movieToSize.left = x; diff --git a/sfall/Modules/Credits.cpp b/sfall/Modules/Credits.cpp index ee31efde..d771ea24 100644 --- a/sfall/Modules/Credits.cpp +++ b/sfall/Modules/Credits.cpp @@ -40,6 +40,7 @@ static const char* ExtraLines[] = { "Timeslip", "", "@Contributors", + "@(in chronological order)", "ravachol", "Noid", "Glovz", diff --git a/sfall/version.h b/sfall/version.h index 854984b9..40790b1f 100644 --- a/sfall/version.h +++ b/sfall/version.h @@ -25,6 +25,6 @@ #define VERSION_MAJOR 4 #define VERSION_MINOR 3 #define VERSION_BUILD 4 -#define VERSION_REV 0 +#define VERSION_REV 1 -#define VERSION_STRING "4.3.4" +#define VERSION_STRING "4.3.4.1"