This commit is contained in:
Snipie 2016-07-09 14:00:14 +00:00 committed by Zeno-
parent 27905f1a4a
commit 4c530dea1a
1 changed files with 2 additions and 2 deletions

View File

@ -433,7 +433,7 @@ void GUIEngine::drawOverlay(video::IVideoDriver* driver)
video::ITexture* texture = m_textures[TEX_LAYER_OVERLAY].texture;
/* If no texture, draw background of solid color */
/* If no texture, draw nothing */
if(!texture)
return;
@ -462,7 +462,7 @@ void GUIEngine::drawHeader(video::IVideoDriver* driver)
v2s32 splashsize(((f32)texture->getOriginalSize().Width) * mult,
((f32)texture->getOriginalSize().Height) * mult);
// Don't draw the header is there isn't enough room
// Don't draw the header if there isn't enough room
s32 free_space = (((s32)screensize.Height)-320)/2;
if (free_space > splashsize.Y) {