Fixed compilation with GCC/Clang

src/g_statusbar/sbar.h:399:23: error: extra qualification on member 'DrawString'
This commit is contained in:
alexey.lysiuk 2017-03-27 11:55:17 +03:00
parent ad992d2ffd
commit bed559f763
1 changed files with 1 additions and 1 deletions

View File

@ -396,7 +396,7 @@ public:
uint32_t GetTranslation() const; uint32_t GetTranslation() const;
void DrawGraphic(FTextureID texture, double x, double y, int flags, double Alpha, double boxwidth, double boxheight, double scaleX, double scaleY); void DrawGraphic(FTextureID texture, double x, double y, int flags, double Alpha, double boxwidth, double boxheight, double scaleX, double scaleY);
void DBaseStatusBar::DrawString(FFont *font, const FString &cstring, double x, double y, int flags, double Alpha, int translation, int spacing, bool monospaced, int shadowX, int shadowY); void DrawString(FFont *font, const FString &cstring, double x, double y, int flags, double Alpha, int translation, int spacing, bool monospaced, int shadowX, int shadowY);
void BeginStatusBar(int resW, int resH, int relTop, bool completeborder = false, bool forceScaled = false); void BeginStatusBar(int resW, int resH, int relTop, bool completeborder = false, bool forceScaled = false);
void BeginHUD(int resW, int resH, double Alpha, bool forceScaled = false); void BeginHUD(int resW, int resH, double Alpha, bool forceScaled = false);