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/client.h | |
parent | 4faaadc8d50d6ab7a19d22bd5a760c4b8321a51f (diff) | |
download | minetest-8f2e60a9619f3db2dea752626e778f753c0714bc.tar.gz minetest-8f2e60a9619f3db2dea752626e778f753c0714bc.tar.bz2 minetest-8f2e60a9619f3db2dea752626e778f753c0714bc.zip |
Client::makeScreenshot: remove device param
We already have the device param as class member
Diffstat (limited to 'src/client.h')
-rw-r--r-- | src/client.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/client.h b/src/client.h index 7bfa26c0d..ab47cfa44 100644 --- a/src/client.h +++ b/src/client.h @@ -507,7 +507,7 @@ public: LocalClientState getState() { return m_state; } - void makeScreenshot(IrrlichtDevice *device); + void makeScreenshot(); inline void pushToChatQueue(const std::wstring &input) { @@ -529,8 +529,6 @@ public: void showGameFog(const bool show = true); void showGameDebug(const bool show = true); - IrrlichtDevice *getDevice() const { return m_device; } - const Address getServerAddress() { return m_con.GetPeerAddress(PEER_ID_SERVER); |