diff options
| author | 2020-09-25 22:03:59 -0700 | |
|---|---|---|
| committer | 2020-09-25 22:03:59 -0700 | |
| commit | ad76b00f1e216c7c7078c4ef76f1ee4c50bf61c9 (patch) | |
| tree | 9536f50309b972aafed8d74279a50fbd4909e372 /src | |
| parent | Merge pull request #4717 from lioncash/debug (diff) | |
| parent | behavior_info: Fix typo Renerer -> Renderer (diff) | |
| download | yuzu-ad76b00f1e216c7c7078c4ef76f1ee4c50bf61c9.tar.gz yuzu-ad76b00f1e216c7c7078c4ef76f1ee4c50bf61c9.tar.xz yuzu-ad76b00f1e216c7c7078c4ef76f1ee4c50bf61c9.zip | |
Merge pull request #4723 from lioncash/typo
behavior_info: Fix typo Renerer -> Renderer
Diffstat (limited to 'src')
| -rw-r--r-- | src/audio_core/behavior_info.cpp | 6 | ||||
| -rw-r--r-- | src/audio_core/behavior_info.h | 6 |
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 { | |||
| 57 | return AudioCommon::IsRevisionSupported(3, user_revision); | 57 | return AudioCommon::IsRevisionSupported(3, user_revision); |
| 58 | } | 58 | } |
| 59 | 59 | ||
| 60 | bool BehaviorInfo::IsAudioRenererProcessingTimeLimit80PercentSupported() const { | 60 | bool BehaviorInfo::IsAudioRendererProcessingTimeLimit80PercentSupported() const { |
| 61 | return AudioCommon::IsRevisionSupported(5, user_revision); | 61 | return AudioCommon::IsRevisionSupported(5, user_revision); |
| 62 | } | 62 | } |
| 63 | 63 | ||
| 64 | bool BehaviorInfo::IsAudioRenererProcessingTimeLimit75PercentSupported() const { | 64 | bool BehaviorInfo::IsAudioRendererProcessingTimeLimit75PercentSupported() const { |
| 65 | return AudioCommon::IsRevisionSupported(4, user_revision); | 65 | return AudioCommon::IsRevisionSupported(4, user_revision); |
| 66 | } | 66 | } |
| 67 | 67 | ||
| 68 | bool BehaviorInfo::IsAudioRenererProcessingTimeLimit70PercentSupported() const { | 68 | bool BehaviorInfo::IsAudioRendererProcessingTimeLimit70PercentSupported() const { |
| 69 | return AudioCommon::IsRevisionSupported(1, user_revision); | 69 | return AudioCommon::IsRevisionSupported(1, user_revision); |
| 70 | } | 70 | } |
| 71 | 71 | ||
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: | |||
| 49 | bool IsAdpcmLoopContextBugFixed() const; | 49 | bool IsAdpcmLoopContextBugFixed() const; |
| 50 | bool IsSplitterSupported() const; | 50 | bool IsSplitterSupported() const; |
| 51 | bool IsLongSizePreDelaySupported() const; | 51 | bool IsLongSizePreDelaySupported() const; |
| 52 | bool IsAudioRenererProcessingTimeLimit80PercentSupported() const; | 52 | bool IsAudioRendererProcessingTimeLimit80PercentSupported() const; |
| 53 | bool IsAudioRenererProcessingTimeLimit75PercentSupported() const; | 53 | bool IsAudioRendererProcessingTimeLimit75PercentSupported() const; |
| 54 | bool IsAudioRenererProcessingTimeLimit70PercentSupported() const; | 54 | bool IsAudioRendererProcessingTimeLimit70PercentSupported() const; |
| 55 | bool IsElapsedFrameCountSupported() const; | 55 | bool IsElapsedFrameCountSupported() const; |
| 56 | bool IsMemoryPoolForceMappingEnabled() const; | 56 | bool IsMemoryPoolForceMappingEnabled() const; |
| 57 | bool IsFlushVoiceWaveBuffersSupported() const; | 57 | bool IsFlushVoiceWaveBuffersSupported() const; |