summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikolay Korolev <nickvnuk@gmail.com>2020-04-06 18:46:52 +0200
committerGitHub <noreply@github.com>2020-04-06 18:46:52 +0200
commit3175f2ee4845f32042acbf2aa0faa2e24153b73f (patch)
treee7a9f80971facb4455c59ec3b2ee8eef42721446
parentMerge pull request #379 from erorcun/erorcun (diff)
parentfixed build (diff)
downloadre3-3175f2ee4845f32042acbf2aa0faa2e24153b73f.tar
re3-3175f2ee4845f32042acbf2aa0faa2e24153b73f.tar.gz
re3-3175f2ee4845f32042acbf2aa0faa2e24153b73f.tar.bz2
re3-3175f2ee4845f32042acbf2aa0faa2e24153b73f.tar.lz
re3-3175f2ee4845f32042acbf2aa0faa2e24153b73f.tar.xz
re3-3175f2ee4845f32042acbf2aa0faa2e24153b73f.tar.zst
re3-3175f2ee4845f32042acbf2aa0faa2e24153b73f.zip
-rw-r--r--src/core/Frontend.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/Frontend.cpp b/src/core/Frontend.cpp
index e509de28..a7851650 100644
--- a/src/core/Frontend.cpp
+++ b/src/core/Frontend.cpp
@@ -1179,7 +1179,7 @@ CMenuManager::GetNumOptionsCntrlConfigScreens(void)
break;
case MENUPAGE_KEYBOARD_CONTROLS:
switch (m_ControlMethod) {
- case CONTROL_STANDART:
+ case CONTROL_STANDARD:
number = 25;
break;
case CONTROL_CLASSIC:
@@ -1200,7 +1200,7 @@ CMenuManager::DrawControllerBound(int32 yStart, int32 xStart, int32 unused, int8
int bindingMargin = MENU_X(3.0f);
float rowHeight;
switch (CMenuManager::m_ControlMethod) {
- case CONTROL_STANDART:
+ case CONTROL_STANDARD:
rowHeight = 10.7f;
break;
case CONTROL_CLASSIC:
@@ -1274,13 +1274,13 @@ CMenuManager::DrawControllerBound(int32 yStart, int32 xStart, int32 unused, int8
controllerAction = PED_LOOKBEHIND;
break;
case 23:
- if (CMenuManager::m_ControlMethod == CONTROL_STANDART)
+ if (CMenuManager::m_ControlMethod == CONTROL_STANDARD)
controllerAction = -1;
else
controllerAction = PED_1RST_PERSON_LOOK_LEFT;
break;
case 24:
- if (CMenuManager::m_ControlMethod == CONTROL_STANDART)
+ if (CMenuManager::m_ControlMethod == CONTROL_STANDARD)
controllerAction = -1;
else
controllerAction = PED_1RST_PERSON_LOOK_RIGHT;