aboutsummaryrefslogtreecommitdiff
path: root/src/audio_core/behavior_info.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2020-09-25 17:14:02 -0400
committerLioncash <mathew1800@gmail.com>2020-09-25 17:14:02 -0400
commitdc83ca8914222230873c6a3b6056d8f9c183f42c (patch)
tree9536f50309b972aafed8d74279a50fbd4909e372 /src/audio_core/behavior_info.cpp
parent4d4afc150294483e6090626022be55b1dfdfd498 (diff)
behavior_info: Fix typo Renerer -> Renderer
Diffstat (limited to 'src/audio_core/behavior_info.cpp')
-rw-r--r--src/audio_core/behavior_info.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/audio_core/behavior_info.cpp b/src/audio_core/behavior_info.cpp
index 5d62adb0b..3c2e3e6f1 100644
--- a/src/audio_core/behavior_info.cpp
+++ b/src/audio_core/behavior_info.cpp
@@ -57,15 +57,15 @@ bool BehaviorInfo::IsLongSizePreDelaySupported() const {
return AudioCommon::IsRevisionSupported(3, user_revision);
}
-bool BehaviorInfo::IsAudioRenererProcessingTimeLimit80PercentSupported() const {
+bool BehaviorInfo::IsAudioRendererProcessingTimeLimit80PercentSupported() const {
return AudioCommon::IsRevisionSupported(5, user_revision);
}
-bool BehaviorInfo::IsAudioRenererProcessingTimeLimit75PercentSupported() const {
+bool BehaviorInfo::IsAudioRendererProcessingTimeLimit75PercentSupported() const {
return AudioCommon::IsRevisionSupported(4, user_revision);
}
-bool BehaviorInfo::IsAudioRenererProcessingTimeLimit70PercentSupported() const {
+bool BehaviorInfo::IsAudioRendererProcessingTimeLimit70PercentSupported() const {
return AudioCommon::IsRevisionSupported(1, user_revision);
}