diff options
| author | Felix Domke <tmbinc@elitedvb.net> | 2006-03-01 22:44:18 +0000 |
|---|---|---|
| committer | Felix Domke <tmbinc@elitedvb.net> | 2006-03-01 22:44:18 +0000 |
| commit | 2334840aabb952e3b6ee5cc60c368f7f2884d9dd (patch) | |
| tree | 8d9b5109c26a3591b34991cf5712250b6ddcbe24 /main | |
| parent | fbefcdd764d2b41d6f80f1e17e64bd72c79fa31d (diff) | |
| download | enigma2-2334840aabb952e3b6ee5cc60c368f7f2884d9dd.tar.gz enigma2-2334840aabb952e3b6ee5cc60c368f7f2884d9dd.zip | |
quick work around for fixing return codes
Diffstat (limited to 'main')
| -rw-r--r-- | main/enigma.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/main/enigma.cpp b/main/enigma.cpp index 00b31ae6..3102c20a 100644 --- a/main/enigma.cpp +++ b/main/enigma.cpp @@ -260,12 +260,13 @@ eApplication *getApplication() void runMainloop() { - exit_code = eApp->runLoop(); + eApp->runLoop(); } void quitMainloop(int exitCode) { - eApp->quit(exitCode); + exit_code = exitCode; + eApp->quit(0); } void setLCD(const char *string) |
