aboutsummaryrefslogtreecommitdiff
path: root/src/audio_core/hle/pipe.cpp
diff options
context:
space:
mode:
authorwwylele <wwylele@gmail.com>2016-10-21 11:35:47 +0800
committerGitHub <noreply@github.com>2016-10-21 11:35:47 +0800
commit8b367777319b4fc14c7a9af6b91e07702cbb8742 (patch)
treefa2cf9ff34820635fcea6a48679547f40c58bd17 /src/audio_core/hle/pipe.cpp
parentcc7f1155a890e049299911aa54ec82804a2e5347 (diff)
parent13d46f6820f231fe245eabdd95c7e70c5b3bb023 (diff)
Merge pull request #2131 from ricardotk/typos
Fix typos
Diffstat (limited to 'src/audio_core/hle/pipe.cpp')
-rw-r--r--src/audio_core/hle/pipe.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/audio_core/hle/pipe.cpp b/src/audio_core/hle/pipe.cpp
index b472c81d8e..bc69acbc28 100644
--- a/src/audio_core/hle/pipe.cpp
+++ b/src/audio_core/hle/pipe.cpp
@@ -117,7 +117,7 @@ void PipeWrite(DspPipe pipe_number, const std::vector<u8>& buffer) {
}
enum class StateChange {
- Initalize = 0,
+ Initialize = 0,
Shutdown = 1,
Wakeup = 2,
Sleep = 3,
@@ -130,7 +130,7 @@ void PipeWrite(DspPipe pipe_number, const std::vector<u8>& buffer) {
// sleeping and reset it back after wakeup on behalf of the DSP.
switch (static_cast<StateChange>(buffer[0])) {
- case StateChange::Initalize:
+ case StateChange::Initialize:
LOG_INFO(Audio_DSP, "Application has requested initialization of DSP hardware");
ResetPipes();
AudioPipeWriteStructAddresses();