diff options
author | ronie <ronie@poedel.net> | 2012-11-11 14:37:04 +0100 |
---|---|---|
committer | ronie <ronie@poedel.net> | 2012-11-11 14:37:04 +0100 |
commit | f57a759ac6ad8b8ae309e31807ae18bdf758ccfe (patch) | |
tree | 73431f9102f0ee2288db90a21700897a786408c8 | |
parent | 243d5b92bdaf81d720514cabd673970c3b0bd9ae (diff) |
silently cancel screensaver alarmclock
-rw-r--r-- | xbmc/addons/ScreenSaver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/addons/ScreenSaver.cpp b/xbmc/addons/ScreenSaver.cpp index 6d3b08e013..e90798afc4 100644 --- a/xbmc/addons/ScreenSaver.cpp +++ b/xbmc/addons/ScreenSaver.cpp @@ -45,7 +45,7 @@ bool CScreenSaver::CreateScreenSaver() if (URIUtils::GetExtension(LibPath()).Equals(".py", false)) { // Don't allow a previously-scheduled alarm to kill our new screensaver - g_alarmClock.Stop(PYTHON_ALARM); + g_alarmClock.Stop(PYTHON_ALARM, true); if (!g_pythonParser.StopScript(LibPath())) g_pythonParser.evalFile(LibPath(), AddonPtr(new CScreenSaver(Props()))); |