diff options
author | CrystalP <CrystalP@xbmc.org> | 2011-03-28 22:41:28 -0400 |
---|---|---|
committer | CrystalP <CrystalP@xbmc.org> | 2011-03-28 22:42:17 -0400 |
commit | ec4165c9c56f17f8c36bd02046b939eff3a1f1b2 (patch) | |
tree | 413a413e1e2efef1f4b7bfc29c1a0bf1199936bf | |
parent | 871b0d48fdf9739dc06c02729fd8feed56bd7352 (diff) |
[WIN32] fix build after 15dbc7b0: need to give Stop() an exit code. Actual value not important.
-rw-r--r-- | xbmc/win32/Win32DelayedDllLoad.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/win32/Win32DelayedDllLoad.cpp b/xbmc/win32/Win32DelayedDllLoad.cpp index f42baf4fd9..d213bd22a2 100644 --- a/xbmc/win32/Win32DelayedDllLoad.cpp +++ b/xbmc/win32/Win32DelayedDllLoad.cpp @@ -52,7 +52,7 @@ FARPROC WINAPI delayHookFailureFunc (unsigned dliNotify, PDelayLoadInfo pdli) switch (dliNotify) { case dliFailLoadLib: - g_application.Stop(); + g_application.Stop(1); CStdString strError; strError.Format("Uh oh, can't load %s, exiting.", pdli->szDll); MessageBox(NULL, strError.c_str(), "XBMC: Fatal Error", MB_OK|MB_ICONERROR); |