summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/dsp_dsp.cpp
diff options
context:
space:
mode:
authorYuri Kunde Schlesner <yuriks@yuriks.net>2016-03-13 04:46:05 +0100
committerYuri Kunde Schlesner <yuriks@yuriks.net>2016-03-13 04:46:05 +0100
commit7f8c99899bce49475908c3974433a51044f36e19 (patch)
tree5c06aa00ad880a09ff1c227e0ed5da0901d3ef63 /src/core/hle/service/dsp_dsp.cpp
parentMerge pull request #1266 from Subv/miiapplet (diff)
parentsvc: Move ResetType enum to the kernel event header (diff)
downloadyuzu-7f8c99899bce49475908c3974433a51044f36e19.tar
yuzu-7f8c99899bce49475908c3974433a51044f36e19.tar.gz
yuzu-7f8c99899bce49475908c3974433a51044f36e19.tar.bz2
yuzu-7f8c99899bce49475908c3974433a51044f36e19.tar.lz
yuzu-7f8c99899bce49475908c3974433a51044f36e19.tar.xz
yuzu-7f8c99899bce49475908c3974433a51044f36e19.tar.zst
yuzu-7f8c99899bce49475908c3974433a51044f36e19.zip
Diffstat (limited to 'src/core/hle/service/dsp_dsp.cpp')
-rw-r--r--src/core/hle/service/dsp_dsp.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/dsp_dsp.cpp b/src/core/hle/service/dsp_dsp.cpp
index 3ba24d466..08e437125 100644
--- a/src/core/hle/service/dsp_dsp.cpp
+++ b/src/core/hle/service/dsp_dsp.cpp
@@ -457,7 +457,7 @@ const Interface::FunctionInfo FunctionTable[] = {
// Interface class
Interface::Interface() {
- semaphore_event = Kernel::Event::Create(RESETTYPE_ONESHOT, "DSP_DSP::semaphore_event");
+ semaphore_event = Kernel::Event::Create(Kernel::ResetType::OneShot, "DSP_DSP::semaphore_event");
read_pipe_count = 0;
Register(FunctionTable);