summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2020-09-26 07:03:59 +0200
committerGitHub <noreply@github.com>2020-09-26 07:03:59 +0200
commitad76b00f1e216c7c7078c4ef76f1ee4c50bf61c9 (patch)
tree9536f50309b972aafed8d74279a50fbd4909e372 /src
parentMerge pull request #4717 from lioncash/debug (diff)
parentbehavior_info: Fix typo Renerer -> Renderer (diff)
downloadyuzu-ad76b00f1e216c7c7078c4ef76f1ee4c50bf61c9.tar
yuzu-ad76b00f1e216c7c7078c4ef76f1ee4c50bf61c9.tar.gz
yuzu-ad76b00f1e216c7c7078c4ef76f1ee4c50bf61c9.tar.bz2
yuzu-ad76b00f1e216c7c7078c4ef76f1ee4c50bf61c9.tar.lz
yuzu-ad76b00f1e216c7c7078c4ef76f1ee4c50bf61c9.tar.xz
yuzu-ad76b00f1e216c7c7078c4ef76f1ee4c50bf61c9.tar.zst
yuzu-ad76b00f1e216c7c7078c4ef76f1ee4c50bf61c9.zip
Diffstat (limited to 'src')
-rw-r--r--src/audio_core/behavior_info.cpp6
-rw-r--r--src/audio_core/behavior_info.h6
2 files changed, 6 insertions, 6 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);
}
diff --git a/src/audio_core/behavior_info.h b/src/audio_core/behavior_info.h
index 50948e8df..512a4ebe3 100644
--- a/src/audio_core/behavior_info.h
+++ b/src/audio_core/behavior_info.h
@@ -49,9 +49,9 @@ public:
bool IsAdpcmLoopContextBugFixed() const;
bool IsSplitterSupported() const;
bool IsLongSizePreDelaySupported() const;
- bool IsAudioRenererProcessingTimeLimit80PercentSupported() const;
- bool IsAudioRenererProcessingTimeLimit75PercentSupported() const;
- bool IsAudioRenererProcessingTimeLimit70PercentSupported() const;
+ bool IsAudioRendererProcessingTimeLimit80PercentSupported() const;
+ bool IsAudioRendererProcessingTimeLimit75PercentSupported() const;
+ bool IsAudioRendererProcessingTimeLimit70PercentSupported() const;
bool IsElapsedFrameCountSupported() const;
bool IsMemoryPoolForceMappingEnabled() const;
bool IsFlushVoiceWaveBuffersSupported() const;