diff options
author | Andrei Karas <akaras@inbox.ru> | 2014-08-27 12:32:16 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2014-08-27 12:32:16 +0300 |
commit | 7c87b2ac8e01307e603bd85420f8d10724a296e6 (patch) | |
tree | a653847183daa2bcb64f90d37893f549a2bcb6df /src/input | |
parent | eade4818db87cc41e4c014688e5ee0d15ede6912 (diff) | |
download | plus-7c87b2ac8e01307e603bd85420f8d10724a296e6.tar.gz plus-7c87b2ac8e01307e603bd85420f8d10724a296e6.tar.bz2 plus-7c87b2ac8e01307e603bd85420f8d10724a296e6.tar.xz plus-7c87b2ac8e01307e603bd85420f8d10724a296e6.zip |
Move chat command /dumpgl into actions.
Diffstat (limited to 'src/input')
-rw-r--r-- | src/input/inputaction.h | 1 | ||||
-rw-r--r-- | src/input/inputactionmap.h | 9 | ||||
-rw-r--r-- | src/input/pages/other.cpp | 6 |
3 files changed, 16 insertions, 0 deletions
diff --git a/src/input/inputaction.h b/src/input/inputaction.h index d372699ef..928b1d5b9 100644 --- a/src/input/inputaction.h +++ b/src/input/inputaction.h @@ -402,6 +402,7 @@ namespace InputAction DUMP_ENVIRONMENT, DUMP_TESTS, DUMP_OGL, + DUMP_GL, TOTAL }; } // namespace InputAction diff --git a/src/input/inputactionmap.h b/src/input/inputactionmap.h index 0eb445c53..eb430ddfa 100644 --- a/src/input/inputactionmap.h +++ b/src/input/inputactionmap.h @@ -3387,6 +3387,15 @@ static const InputActionData inputActionData[InputAction::TOTAL] = { InputAction::NO_VALUE, 50, InputCondition::INGAME, "dumpogl", + false}, + {"keyDumpGL", + InputType::UNKNOWN, InputAction::NO_VALUE, + InputType::UNKNOWN, InputAction::NO_VALUE, + Input::GRP_DEFAULT, + &Actions::dumpGL, + InputAction::NO_VALUE, 50, + InputCondition::INGAME, + "dumpgl", false} }; diff --git a/src/input/pages/other.cpp b/src/input/pages/other.cpp index 338f947c4..4ade43d61 100644 --- a/src/input/pages/other.cpp +++ b/src/input/pages/other.cpp @@ -305,6 +305,12 @@ SetupActionData setupActionDataOther[] = }, { // TRANSLATORS: input action name + N_("Print OpenGL version in chat"), + InputAction::DUMP_GL, + "", + }, + { + // TRANSLATORS: input action name N_("Dump environments into log"), InputAction::DUMP_ENVIRONMENT, "", |