neutrino: remove ng leftovers

Origin commit data
------------------
Commit: 3df9dbb93a
Author: vanhofen <vanhofen@gmx.de>
Date: 2016-09-27 (Tue, 27 Sep 2016)

Origin message was:
------------------
- neutrino: remove ng leftovers
This commit is contained in:
vanhofen
2016-09-27 22:57:36 +02:00
parent e2a4c7bf82
commit 1fb45d19c3

View File

@@ -2103,9 +2103,9 @@ TIMER_START();
CHintBox * hintBox = new CHintBox(LOCALE_MESSAGEBOX_INFO, g_Locale->getText(LOCALE_NEUTRINO_STARTING)); CHintBox * hintBox = new CHintBox(LOCALE_MESSAGEBOX_INFO, g_Locale->getText(LOCALE_NEUTRINO_STARTING));
//NI show startlogo //NI show startlogo
bool ng_startlogo = false; bool startlogo = false;
if (!show_startwizard) { if (!show_startwizard) {
ng_startlogo = true; startlogo = true;
} }
else { else {
hintBox->paint(); hintBox->paint();
@@ -2153,7 +2153,7 @@ TIMER_START();
g_videoSettings->setVideoSettings(); g_videoSettings->setVideoSettings();
//NI show startlogo //NI show startlogo
if (ng_startlogo) { if (startlogo) {
frameBuffer->showFrame("start.jpg"); frameBuffer->showFrame("start.jpg");
} }
@@ -2266,8 +2266,8 @@ TIMER_START();
} }
//NI - show startlogo //NI - show startlogo
if(ng_startlogo) { if (startlogo) {
ng_startlogo = false; startlogo = false;
sleep(3); sleep(3);
frameBuffer->stopFrame(); frameBuffer->stopFrame();
} }