Skip to content

Commit

Permalink
CStdDDraw: Remove unnecessary spaces in log messages
Browse files Browse the repository at this point in the history
  • Loading branch information
Fulgen301 committed Nov 30, 2024
1 parent 7343790 commit 0cbeaa1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/StdDDraw2.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1325,23 +1325,23 @@ bool CStdDDraw::Init(CStdApp *pApp, C4LogSystem &logSystem)
logger = logSystem.CreateLoggerWithDifferentName(Config.Logging.DDraw, std::string{GetEngineName()});

logger->debug("Init DDraw");
logger->debug(" Create DirectDraw...");
logger->debug("Create DirectDraw...");

if (!CreateDirectDraw())
{
logger->error("CreateDirectDraw failure.");
return false;
}

logger->debug(" Create Device...");
logger->debug("Create Device...");

if (!CreatePrimarySurfaces())
{
logger->error("CreateDevice failure.");
return false;
}

logger->debug(" Create Clipper");
logger->debug("Create Clipper");

if (!CreatePrimaryClipper())
{
Expand Down

0 comments on commit 0cbeaa1

Please sign in to comment.