driver/record.cpp: use slow record warning option.

this warning tested for generic setup with usb hdd and
meant to early tell if record buffer usage reach watermark,
where user have chance to stop some of records and save others from overflow
under high load. if your think you getting false warnings, disable it


Origin commit data
------------------
Commit: d771f625a0
Author: [CST] Focus <focus.cst@gmail.com>
Date: 2012-10-16 (Tue, 16 Oct 2012)
This commit is contained in:
[CST] Focus
2012-10-16 19:58:58 +04:00
parent aee47b190b
commit 74657940d7

View File

@@ -1182,7 +1182,7 @@ int CRecordManager::handleMsg(const neutrino_msg_t msg, neutrino_msg_data_t data
error_display = false;
warn_display = false;
DisplayErrorMessage(g_Locale->getText(LOCALE_STREAMING_OVERFLOW));
} else if (warn_display) {
} else if (g_settings.recording_slow_warning && warn_display) {
warn_display = false;
DisplayErrorMessage(g_Locale->getText(LOCALE_STREAMING_SLOW));
}