diff --git a/src/libs/raceengine/raceinit.cpp b/src/libs/raceengine/raceinit.cpp index 79c0ea92..d34a07fc 100644 --- a/src/libs/raceengine/raceinit.cpp +++ b/src/libs/raceengine/raceinit.cpp @@ -783,9 +783,9 @@ ReInitCars(void) GfLogError("No descriptor file for robot %s or parameter errors (1)\n", robotModuleName); snprintf(buf, sizeof(buf), "Error: May be no driver, or some parameters are out of bound"); ReUI().addLoadingMessage(buf); - snprintf(buf, sizeof(buf), " Have a look to the console window to get the detailed error messages"); + snprintf(buf, sizeof(buf), " Have a look at the console window for mode details about the error"); ReUI().addLoadingMessage(buf); - snprintf(buf, sizeof(buf), " Will go back to the config menu in 10 s"); + snprintf(buf, sizeof(buf), " Back to the config menu in 10 s ..."); ReUI().addLoadingMessage(buf); // Wait some time to allow the user to read the message! diff --git a/src/libs/raceengine/racemain.cpp b/src/libs/raceengine/racemain.cpp index d94f3e8c..03a02211 100644 --- a/src/libs/raceengine/racemain.cpp +++ b/src/libs/raceengine/racemain.cpp @@ -386,6 +386,10 @@ ReRaceRealStart(void) // Initialize the graphics engine. if (ReUI().initializeGraphics()) { + snprintf(buf, sizeof(buf), "Loading graphics for track %s ...", + ReInfo->track->name); + ReUI().addLoadingMessage(buf); + // Initialize the track graphics. ReUI().loadTrackGraphics(ReInfo->track); } @@ -448,7 +452,7 @@ ReRaceRealStart(void) // Initialize cars graphics. if (ReInfo->_displayMode == RM_DISP_MODE_NORMAL) { - ReUI().addLoadingMessage("Loading cars ..."); + ReUI().addLoadingMessage("Loading graphics for all cars ..."); ReUI().loadCarsGraphics(ReOutputSituation()->s); }