diff options
Diffstat (limited to 'src/FSclReminder.cpp')
-rw-r--r-- | src/FSclReminder.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/FSclReminder.cpp b/src/FSclReminder.cpp index f10d60c..d4d001f 100644 --- a/src/FSclReminder.cpp +++ b/src/FSclReminder.cpp @@ -135,6 +135,16 @@ Reminder::GetMinutesBefore(void) const String Reminder::GetSoundFile(void) const { + if (_AppInfo::GetApiVersion() == _API_VERSION_2_0 && _AppInfo::IsOspCompat()) + { + String tmpFilePath; + _FileImpl::ConvertPhysicalToVirtualPath(__soundFilePath, tmpFilePath); + + ClearLastResult(); + + return tmpFilePath; + } + return __soundFilePath; } |