diff options
author | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-10-18 12:54:08 +0200 |
---|---|---|
committer | Elias Fleckenstein <eliasfleckenstein@web.de> | 2020-10-18 12:54:08 +0200 |
commit | 3a718f12b433ef3980c8fc6e29957595110cd8f4 (patch) | |
tree | f7c05e501df2c9a40d62ba13b0a3b9b78b394959 /src/client/render/core.h | |
parent | 3b596a96e07bf8f799be6c21a546355980e34b94 (diff) | |
download | dragonfireclient-3a718f12b433ef3980c8fc6e29957595110cd8f4.tar.xz |
Make lint happy; Remove stupid redirector
Diffstat (limited to 'src/client/render/core.h')
-rw-r--r-- | src/client/render/core.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/client/render/core.h b/src/client/render/core.h index 609892416..90b81b060 100644 --- a/src/client/render/core.h +++ b/src/client/render/core.h @@ -48,7 +48,7 @@ protected: Camera *camera; Minimap *mapper; Hud *hud; - + void updateScreenSize(); virtual void initTextures() {} virtual void clearTextures() {} @@ -72,7 +72,8 @@ public: void initialize(); void draw(video::SColor _skycolor, bool _show_hud, bool _show_minimap, - bool _draw_wield_tool, bool _draw_crosshair, bool _draw_tracers, bool _draw_esp); + bool _draw_wield_tool, bool _draw_crosshair, bool _draw_tracers, + bool _draw_esp); inline v2u32 getVirtualSize() const { return virtual_size; } }; |