shellwindow: add timeout

Origin commit data
------------------
Branch: ni/coolstream
Commit: caabe9707c
Author: vanhofen <vanhofen@gmx.de>
Date: 2014-09-11 (Thu, 11 Sep 2014)

Origin message was:
------------------
- shellwindow: add timeout

------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
vanhofen
2014-09-11 21:57:18 +02:00
parent 8388d1ab95
commit 9afd8e8d75

View File

@@ -191,9 +191,10 @@ CShellWindow::~CShellWindow()
neutrino_msg_t msg;
neutrino_msg_data_t data;
uint64_t timeoutEnd = CRCInput::calcTimeoutEnd(g_settings.timing[SNeutrinoSettings::TIMING_MENU] == 0 ? 0xFFFF : g_settings.timing[SNeutrinoSettings::TIMING_MENU]);
do
g_RCInput->getMsg(&msg, &data, 100);
while (msg != CRCInput::RC_ok && msg != CRCInput::RC_home);
g_RCInput->getMsgAbsoluteTimeout(&msg, &data, &timeoutEnd);
while (msg != CRCInput::RC_ok && msg != CRCInput::RC_home && msg != CRCInput::RC_timeout);
frameBuffer->Clear();
frameBuffer->blit();