From 9ae899360c11fdd88f671713ddb965227b99e79f Mon Sep 17 00:00:00 2001 From: Jools Wills Date: Fri, 8 Feb 2019 20:50:23 +0000 Subject: [PATCH] cosmetic - indent --- es-app/src/views/ViewController.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/es-app/src/views/ViewController.cpp b/es-app/src/views/ViewController.cpp index 38fe2dff6..8e543802f 100644 --- a/es-app/src/views/ViewController.cpp +++ b/es-app/src/views/ViewController.cpp @@ -433,12 +433,12 @@ void ViewController::preload() for(auto it = SystemData::sSystemVector.cbegin(); it != SystemData::sSystemVector.cend(); it++) { if(Settings::getInstance()->getBool("SplashScreen") && - Settings::getInstance()->getBool("SplashScreenProgress")) + Settings::getInstance()->getBool("SplashScreenProgress")) { i++; char buffer[100]; sprintf (buffer, "Loading '%s' (%d/%d)", - (*it)->getFullName().c_str(), i, SystemData::sSystemVector.size()); + (*it)->getFullName().c_str(), i, SystemData::sSystemVector.size()); mWindow->renderLoadingScreen(std::string(buffer)); }