diff options
| author | 2019-07-24 07:45:45 -0400 | |
|---|---|---|
| committer | 2019-09-04 19:58:55 -0400 | |
| commit | f763e230830019f4a430da7558ee4cbbb0684534 (patch) | |
| tree | a325e307d8c91b229cb2ca38d83d9139fd11a1d7 /src | |
| parent | kernel/vm_manager: Move variables closer to usage spots in MapPhysicalMemory/... (diff) | |
| download | yuzu-f763e230830019f4a430da7558ee4cbbb0684534.tar.gz yuzu-f763e230830019f4a430da7558ee4cbbb0684534.tar.xz yuzu-f763e230830019f4a430da7558ee4cbbb0684534.zip | |
kernel/vm_manager: Correct doxygen comment parameter tags for MapPhysicalMemory/UnmapPhysicalMemory
Corrects the parameter names within the doxygen comments so that they
resolve properly.
Diffstat (limited to 'src')
| -rw-r--r-- | src/core/hle/kernel/vm_manager.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/kernel/vm_manager.h b/src/core/hle/kernel/vm_manager.h index b18cde619..850a7ebc3 100644 --- a/src/core/hle/kernel/vm_manager.h +++ b/src/core/hle/kernel/vm_manager.h | |||
| @@ -454,8 +454,8 @@ public: | |||
| 454 | 454 | ||
| 455 | /// Maps memory at a given address. | 455 | /// Maps memory at a given address. |
| 456 | /// | 456 | /// |
| 457 | /// @param addr The virtual address to map memory at. | 457 | /// @param target The virtual address to map memory at. |
| 458 | /// @param size The amount of memory to map. | 458 | /// @param size The amount of memory to map. |
| 459 | /// | 459 | /// |
| 460 | /// @note The destination address must lie within the Map region. | 460 | /// @note The destination address must lie within the Map region. |
| 461 | /// | 461 | /// |
| @@ -468,8 +468,8 @@ public: | |||
| 468 | 468 | ||
| 469 | /// Unmaps memory at a given address. | 469 | /// Unmaps memory at a given address. |
| 470 | /// | 470 | /// |
| 471 | /// @param addr The virtual address to unmap memory at. | 471 | /// @param target The virtual address to unmap memory at. |
| 472 | /// @param size The amount of memory to unmap. | 472 | /// @param size The amount of memory to unmap. |
| 473 | /// | 473 | /// |
| 474 | /// @note The destination address must lie within the Map region. | 474 | /// @note The destination address must lie within the Map region. |
| 475 | /// | 475 | /// |