Fix kb input on Stats tab. Updated F1 text.

This commit is contained in:
Mari the Deer 2020-08-18 13:14:47 +02:00
commit 7a8e21dec0
5 changed files with 17 additions and 4 deletions

View file

@ -26,6 +26,7 @@ Extra things for later:
- Japanese localization
- Mod trailer video
- Rewrite the entire Demolitionist Menu code from the ground up to be more easily extensible and adapt to any window size
- Separate Demolitionist models for each weapon (will include DLC weapons too in the future)
Very extra things for the future:
- DLC

View file

@ -250,6 +250,12 @@ SWWM_HELPTXT =
"\n"
"\cfUp/Down:\c- Scroll\n"
"\n"
"\cxStats Tab - Controls\c-\n"
"\cx--------------------\c-\n"
"\n"
"\cfUp/Down:\c- Scroll\n"
"\cfLeft/Right:\c- Switch section\n"
"\n"
"\cxInventory Tab - Controls\c-\n"
"\cx----------------------\c-\n"
"\n"

View file

@ -246,6 +246,12 @@ SWWM_HELPTXT =
"\n"
"\cfArriba/Abajo:\c- Scroll\n"
"\n"
"\cxPestaña de Stats - Controles\c-\n"
"\cx---------------------------\c-\n"
"\n"
"\cfArriba/Abajo:\c- Scroll\n"
"\cfIzquierda/Derecha:\c- Cambiar sección\n"
"\n"
"\cxPestaña de Inventario - Controles\c-\n"
"\cx-------------------------------\c-\n"
"\n"
@ -262,7 +268,7 @@ SWWM_HELPTXT =
"\cx-------------------------------------------\c-\n"
"\n"
"\cfArriba/Abajo:\c- Scroll por entradas\n"
"\cfLeft/Right:\c- Cambiar categoría\n"
"\cfIzquierda/Derecha:\c- Cambiar categoría\n"
"\cfEnter/Click Izdo.:\c- Abrir entrada\n"
"\n"
"\cxPestaña de Biblioteca - Controles (Entrada Abierta)\c-\n"

View file

@ -1,2 +1,2 @@
[default]
SWWM_MODVER="\chSWWM \cwGZ\c- r492 (Mon 17 Aug 17:58:15 CEST 2020)";
SWWM_MODVER="\chSWWM \cwGZ\c- r493 (Tue 18 Aug 13:14:47 CEST 2020)";

View file

@ -548,7 +548,7 @@ Class SWWMKnowledgeBaseMenu : GenericMenu
MenuSound("menu/demoscroll");
ofs0 = sel0 = 0;
ofs1 = ++sel1;
if ( ofs1 > STAT_LEVEL ) ofs1 = sel1 = STAT_MAIN;
if ( ofs1 > STAT_ACHIEVEMENT ) ofs1 = sel1 = STAT_MAIN;
CVar.GetCVar('swwm_laststattab',players[consoleplayer]).SetInt(sel1);
}
return true;
@ -582,7 +582,7 @@ Class SWWMKnowledgeBaseMenu : GenericMenu
MenuSound("menu/demoscroll");
ofs0 = sel0 = 0;
ofs1 = --sel1;
if ( ofs1 < STAT_MAIN ) ofs1 = sel1 = STAT_LEVEL;
if ( ofs1 < STAT_MAIN ) ofs1 = sel1 = STAT_ACHIEVEMENT;
CVar.GetCVar('swwm_laststattab',players[consoleplayer]).SetInt(sel1);
}
return true;