diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/remoteplayer.h | 5 | ||||
-rw-r--r-- | src/skyparams.h | 1 |
2 files changed, 4 insertions, 2 deletions
diff --git a/src/remoteplayer.h b/src/remoteplayer.h index 42e1b5f5b..e4209c54f 100644 --- a/src/remoteplayer.h +++ b/src/remoteplayer.h @@ -84,7 +84,10 @@ public: return hud_hotbar_selected_image; } - void setSky(const SkyboxParams &skybox_params) { m_skybox_params = skybox_params; } + void setSky(const SkyboxParams &skybox_params) + { + m_skybox_params = skybox_params; + } const SkyboxParams &getSkyParams() const { return m_skybox_params; } diff --git a/src/skyparams.h b/src/skyparams.h index c5f01064d..877907e31 100644 --- a/src/skyparams.h +++ b/src/skyparams.h @@ -118,4 +118,3 @@ public: return stars; } }; - |