diff options
| author | Loic Blot <loic.blot@unix-experience.fr> | 2017-06-19 00:00:55 +0200 |
|---|---|---|
| committer | Loic Blot <loic.blot@unix-experience.fr> | 2017-06-19 00:00:55 +0200 |
| commit | 8f2e60a9619f3db2dea752626e778f753c0714bc (patch) | |
| tree | 3b2c3733e60138f615a0a9b30131173c0438a8a4 /src/guiFormSpecMenu.cpp | |
| parent | 4faaadc8d50d6ab7a19d22bd5a760c4b8321a51f (diff) | |
| download | minetest-8f2e60a9619f3db2dea752626e778f753c0714bc.tar.xz | |
Client::makeScreenshot: remove device param
We already have the device param as class member
Diffstat (limited to 'src/guiFormSpecMenu.cpp')
| -rw-r--r-- | src/guiFormSpecMenu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/guiFormSpecMenu.cpp b/src/guiFormSpecMenu.cpp index c6a917d12..d721c917a 100644 --- a/src/guiFormSpecMenu.cpp +++ b/src/guiFormSpecMenu.cpp @@ -3282,7 +3282,7 @@ bool GUIFormSpecMenu::OnEvent(const SEvent& event) return true; } else if (m_client != NULL && event.KeyInput.PressedDown && (kp == getKeySetting("keymap_screenshot"))) { - m_client->makeScreenshot(m_device); + m_client->makeScreenshot(); } if (event.KeyInput.PressedDown && (event.KeyInput.Key==KEY_RETURN || |
