From bea9a7df7233454b5153fd0d71f18cb08b4357a9 Mon Sep 17 00:00:00 2001 From: Roman Fomin Date: Tue, 14 May 2024 09:52:04 +0700 Subject: [PATCH] missed config binds --- src/g_game.c | 1 + src/m_input.c | 2 ++ 2 files changed, 3 insertions(+) diff --git a/src/g_game.c b/src/g_game.c index 26ea35cd..9fc7ac05 100644 --- a/src/g_game.c +++ b/src/g_game.c @@ -4679,6 +4679,7 @@ void G_BindCompVariables(void) BIND_COMP(comp_floors, 0, "Use exactly Doom's floor motion behavior"); BIND_COMP(comp_model, 0, "Use exactly Doom's linedef trigger model"); BIND_COMP(comp_zerotags, 0, "Linedef effects work with sector tag = 0"); + BIND_COMP(comp_soul, 0, "Lost souls bouncing"); BIND_COMP(comp_respawn, 0, "Creatures with no spawnpoint respawn at (0,0)"); BIND_COMP(comp_ledgeblock, 1, "Ledges block ground enemies"); BIND_COMP(comp_friendlyspawn, 1, "A_Spawn new thing inherits friendliness"); diff --git a/src/m_input.c b/src/m_input.c index 899613f5..84f5f5d7 100644 --- a/src/m_input.c +++ b/src/m_input.c @@ -623,6 +623,8 @@ void M_BindInputVariables(void) BIND_INPUT(input_quit, "Quit game"); BIND_INPUT(input_gamma, "Adjust screen brightness (gamma correction)"); BIND_INPUT(input_spy, "View from another player's vantage"); + BIND_INPUT(input_zoomin, "Enlarge display"); + BIND_INPUT(input_zoomout, "Reduce display"); BIND_INPUT(input_screenshot, "Take a screenshot"); BIND_INPUT(input_clean_screenshot, "Take a clean screenshot"); BIND_INPUT(input_pause, "Pause the game");