Skip to content

Commit 4c530de

Browse files
SnipieZeno-
authored andcommittedJul 9, 2016
Fix typos (#4298)
1 parent 27905f1 commit 4c530de

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/guiEngine.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ void GUIEngine::drawOverlay(video::IVideoDriver* driver)
433433

434434
video::ITexture* texture = m_textures[TEX_LAYER_OVERLAY].texture;
435435

436-
/* If no texture, draw background of solid color */
436+
/* If no texture, draw nothing */
437437
if(!texture)
438438
return;
439439

@@ -462,7 +462,7 @@ void GUIEngine::drawHeader(video::IVideoDriver* driver)
462462
v2s32 splashsize(((f32)texture->getOriginalSize().Width) * mult,
463463
((f32)texture->getOriginalSize().Height) * mult);
464464

465-
// Don't draw the header is there isn't enough room
465+
// Don't draw the header if there isn't enough room
466466
s32 free_space = (((s32)screensize.Height)-320)/2;
467467

468468
if (free_space > splashsize.Y) {

0 commit comments

Comments
 (0)
Please sign in to comment.