Fix typos in credits input helper. Fix left analog stick not being active for scrolling the credits window. Release Build 7878.

pull/35/head
sigonasr2 9 months ago
parent a9a640be82
commit 3aaa7d03e4
  1. 7
      Adventures in Lestoria/CreditsWindow.cpp
  2. 2
      Adventures in Lestoria/Version.h
  3. BIN
      x64/Release/Adventures in Lestoria.exe

@ -67,7 +67,7 @@ void Menu::InitializeCreditsWindow(){
{{game->KEY_SCROLLDOWN,Held},{"",[](MenuType type){ {{game->KEY_SCROLLDOWN,Held},{"",[](MenuType type){
Component<ScrollableWindowComponent>(type,"Display Text Scroll Window")->Scroll(-1.f); Component<ScrollableWindowComponent>(type,"Display Text Scroll Window")->Scroll(-1.f);
}}}, }}},
{{game->KEY_SHOULDER,Pressed},{"Scroll Encounters",[](MenuType type){ {{game->KEY_SHOULDER,Pressed},{"Scroll",[](MenuType type){
Component<ScrollableWindowComponent>(type,"Display Text Scroll Window")->Scroll(-1.0f); Component<ScrollableWindowComponent>(type,"Display Text Scroll Window")->Scroll(-1.0f);
}}}, }}},
{{game->KEY_FASTSCROLLUP,Held,InputEngageGroup::NOT_VISIBLE},{"Scroll",[](MenuType type){ {{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){ {{game->KEY_FASTSCROLLDOWN,Held,InputEngageGroup::NOT_VISIBLE},{"Scroll",[](MenuType type){
Component<ScrollableWindowComponent>(type,"Display Text Scroll Window")->Scroll(1.0f); Component<ScrollableWindowComponent>(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<ScrollableWindowComponent>(type,"Display Text Scroll Window")->Scroll(game->KEY_SCROLLVERT.Analog());
}}},
{{game->KEY_SCROLLVERT_L,Analog,InputEngageGroup::NOT_VISIBLE},{"Scroll",[](MenuType type){
Component<ScrollableWindowComponent>(type,"Display Text Scroll Window")->Scroll(game->KEY_SCROLLVERT.Analog()); Component<ScrollableWindowComponent>(type,"Display Text Scroll Window")->Scroll(game->KEY_SCROLLVERT.Analog());
}}}, }}},
{game->KEY_BACK,{"Back",[](MenuType type){ {game->KEY_BACK,{"Back",[](MenuType type){

@ -39,7 +39,7 @@ All rights reserved.
#define VERSION_MAJOR 0 #define VERSION_MAJOR 0
#define VERSION_MINOR 4 #define VERSION_MINOR 4
#define VERSION_PATCH 3 #define VERSION_PATCH 3
#define VERSION_BUILD 7877 #define VERSION_BUILD 7878
#define stringify(a) stringify_(a) #define stringify(a) stringify_(a)
#define stringify_(a) #a #define stringify_(a) #a

Loading…
Cancel
Save