We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27905f1 commit 4c530deCopy full SHA for 4c530de
src/guiEngine.cpp
@@ -433,7 +433,7 @@ void GUIEngine::drawOverlay(video::IVideoDriver* driver)
433
434
video::ITexture* texture = m_textures[TEX_LAYER_OVERLAY].texture;
435
436
- /* If no texture, draw background of solid color */
+ /* If no texture, draw nothing */
437
if(!texture)
438
return;
439
@@ -462,7 +462,7 @@ void GUIEngine::drawHeader(video::IVideoDriver* driver)
462
v2s32 splashsize(((f32)texture->getOriginalSize().Width) * mult,
463
((f32)texture->getOriginalSize().Height) * mult);
464
465
- // Don't draw the header is there isn't enough room
+ // Don't draw the header if there isn't enough room
466
s32 free_space = (((s32)screensize.Height)-320)/2;
467
468
if (free_space > splashsize.Y) {
0 commit comments