diff options
author | Hexagon12 <Hexagon12@users.noreply.github.com> | 2018-04-10 20:21:00 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-04-10 20:21:00 +0200 |
commit | a155d3b7ff6214ba75ee381d3540e8bd9bc04834 (patch) | |
tree | e7b8b7841232cc56f362a8d6b50b5ac588b9d1d9 | |
parent | Updated pctl:a with new service names. (diff) | |
download | yuzu-a155d3b7ff6214ba75ee381d3540e8bd9bc04834.tar yuzu-a155d3b7ff6214ba75ee381d3540e8bd9bc04834.tar.gz yuzu-a155d3b7ff6214ba75ee381d3540e8bd9bc04834.tar.bz2 yuzu-a155d3b7ff6214ba75ee381d3540e8bd9bc04834.tar.lz yuzu-a155d3b7ff6214ba75ee381d3540e8bd9bc04834.tar.xz yuzu-a155d3b7ff6214ba75ee381d3540e8bd9bc04834.tar.zst yuzu-a155d3b7ff6214ba75ee381d3540e8bd9bc04834.zip |
-rw-r--r-- | src/core/hle/service/audio/audin_u.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/audio/audin_u.cpp b/src/core/hle/service/audio/audin_u.cpp index f312c5778..3c495b3a0 100644 --- a/src/core/hle/service/audio/audin_u.cpp +++ b/src/core/hle/service/audio/audin_u.cpp @@ -36,10 +36,10 @@ public: AudInU::AudInU() : ServiceFramework("audin:u") { static const FunctionInfo functions[] = { - {0x00000000, nullptr, "ListAudioIns"}, - {0x00000001, nullptr, "OpenAudioIn"}, - {0x00000003, nullptr, "OpenAudioInAuto"}, - {0x00000004, nullptr, "ListAudioInsAuto"}, + {0, nullptr, "ListAudioIns"}, + {1, nullptr, "OpenAudioIn"}, + {3, nullptr, "OpenAudioInAuto"}, + {4, nullptr, "ListAudioInsAuto"}, }; RegisterHandlers(functions); } |