diff options
Diffstat (limited to 'src/audio_core/renderer/system.h')
| -rw-r--r-- | src/audio_core/renderer/system.h | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/src/audio_core/renderer/system.h b/src/audio_core/renderer/system.h index 753a0b796..3533a74ef 100644 --- a/src/audio_core/renderer/system.h +++ b/src/audio_core/renderer/system.h | |||
| @@ -74,14 +74,14 @@ public: | |||
| 74 | * @param params - Input parameters to initialize the system with. | 74 | * @param params - Input parameters to initialize the system with. |
| 75 | * @param transfer_memory - Game-supplied memory for all workbuffers. Unused. | 75 | * @param transfer_memory - Game-supplied memory for all workbuffers. Unused. |
| 76 | * @param transfer_memory_size - Size of the transfer memory. Unused. | 76 | * @param transfer_memory_size - Size of the transfer memory. Unused. |
| 77 | * @param process_handle - Process handle, also used for memory. Unused. | 77 | * @param process_handle - Process handle, also used for memory. |
| 78 | * @param applet_resource_user_id - Applet id for this renderer. Unused. | 78 | * @param applet_resource_user_id - Applet id for this renderer. Unused. |
| 79 | * @param session_id - Session id of this renderer. | 79 | * @param session_id - Session id of this renderer. |
| 80 | * @return Result code. | 80 | * @return Result code. |
| 81 | */ | 81 | */ |
| 82 | Result Initialize(const AudioRendererParameterInternal& params, | 82 | Result Initialize(const AudioRendererParameterInternal& params, |
| 83 | Kernel::KTransferMemory* transfer_memory, u64 transfer_memory_size, | 83 | Kernel::KTransferMemory* transfer_memory, u64 transfer_memory_size, |
| 84 | u32 process_handle, Kernel::KProcess& process, u64 applet_resource_user_id, | 84 | Kernel::KProcess* process_handle, u64 applet_resource_user_id, |
| 85 | s32 session_id); | 85 | s32 session_id); |
| 86 | 86 | ||
| 87 | /** | 87 | /** |
| @@ -278,9 +278,7 @@ private: | |||
| 278 | /// Does what locks do | 278 | /// Does what locks do |
| 279 | std::mutex lock{}; | 279 | std::mutex lock{}; |
| 280 | /// Process this audio render is operating within, used for memory reads/writes. | 280 | /// Process this audio render is operating within, used for memory reads/writes. |
| 281 | Kernel::KProcess* process{}; | 281 | Kernel::KProcess* process_handle{}; |
| 282 | /// Handle for the process for this system, unused | ||
| 283 | u32 process_handle{}; | ||
| 284 | /// Applet resource id for this system, unused | 282 | /// Applet resource id for this system, unused |
| 285 | u64 applet_resource_user_id{}; | 283 | u64 applet_resource_user_id{}; |
| 286 | /// Controls performance input and output | 284 | /// Controls performance input and output |