diff --git a/Adventures in Lestoria/CreditsWindow.cpp b/Adventures in Lestoria/CreditsWindow.cpp index f8ade7dc..3037a965 100644 --- a/Adventures in Lestoria/CreditsWindow.cpp +++ b/Adventures in Lestoria/CreditsWindow.cpp @@ -67,7 +67,7 @@ void Menu::InitializeCreditsWindow(){ {{game->KEY_SCROLLDOWN,Held},{"",[](MenuType type){ Component(type,"Display Text Scroll Window")->Scroll(-1.f); }}}, - {{game->KEY_SHOULDER,Pressed},{"Scroll Encounters",[](MenuType type){ + {{game->KEY_SHOULDER,Pressed},{"Scroll",[](MenuType type){ Component(type,"Display Text Scroll Window")->Scroll(-1.0f); }}}, {{game->KEY_FASTSCROLLUP,Held,InputEngageGroup::NOT_VISIBLE},{"Scroll",[](MenuType type){ @@ -76,7 +76,10 @@ void Menu::InitializeCreditsWindow(){ {{game->KEY_FASTSCROLLDOWN,Held,InputEngageGroup::NOT_VISIBLE},{"Scroll",[](MenuType type){ Component(type,"Display Text Scroll Window")->Scroll(1.0f); }}}, - {{game->KEY_SCROLLVERT_R,Analog,InputEngageGroup::NOT_VISIBLE},{"Scroll",[](MenuType type){ + {{game->KEY_SCROLLVERT_R,Analog},{"Scroll",[](MenuType type){ + Component(type,"Display Text Scroll Window")->Scroll(game->KEY_SCROLLVERT.Analog()); + }}}, + {{game->KEY_SCROLLVERT_L,Analog,InputEngageGroup::NOT_VISIBLE},{"Scroll",[](MenuType type){ Component(type,"Display Text Scroll Window")->Scroll(game->KEY_SCROLLVERT.Analog()); }}}, {game->KEY_BACK,{"Back",[](MenuType type){ diff --git a/Adventures in Lestoria/Version.h b/Adventures in Lestoria/Version.h index e2c64ccc..5c1f817d 100644 --- a/Adventures in Lestoria/Version.h +++ b/Adventures in Lestoria/Version.h @@ -39,7 +39,7 @@ All rights reserved. #define VERSION_MAJOR 0 #define VERSION_MINOR 4 #define VERSION_PATCH 3 -#define VERSION_BUILD 7877 +#define VERSION_BUILD 7878 #define stringify(a) stringify_(a) #define stringify_(a) #a diff --git a/Adventures in Lestoria/assets/config/credits.txt b/Adventures in Lestoria/assets/config/credits.txt index 419ff112..d06f1bb9 100644 --- a/Adventures in Lestoria/assets/config/credits.txt +++ b/Adventures in Lestoria/assets/config/credits.txt @@ -31,7 +31,7 @@ Credits LINE[28]="~~~~~~~~~~~~~~~~" LINE[29]="Pokemon-based Nico Yazawa sprite that started it all..." LINE[30]="DeviantArt: @kirbysmith" - LINE[31]="" + LINE[31]=" " LINE[32]="ERA OF FANTASY - GRASSLANDS" LINE[33]="X: @Namatnieks" LINE[34]=" " diff --git a/x64/Release/Adventures in Lestoria.exe b/x64/Release/Adventures in Lestoria.exe index 73dce225..908c52b6 100644 Binary files a/x64/Release/Adventures in Lestoria.exe and b/x64/Release/Adventures in Lestoria.exe differ