summaryrefslogtreecommitdiff
path: root/src/core/hle
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/hle')
-rw-r--r--src/core/hle/kernel/thread.h2
-rw-r--r--src/core/hle/kernel/timer.h2
-rw-r--r--src/core/hle/service/cfg/cfg.h2
-rw-r--r--src/core/hle/service/fs/archive.h2
4 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/kernel/thread.h b/src/core/hle/kernel/thread.h
index 284dec400..8c9f63aa5 100644
--- a/src/core/hle/kernel/thread.h
+++ b/src/core/hle/kernel/thread.h
@@ -134,7 +134,7 @@ void WaitCurrentThread(WaitType wait_type, Object* wait_object = GetCurrentThrea
134 134
135/** 135/**
136 * Schedules an event to wake up the specified thread after the specified delay. 136 * Schedules an event to wake up the specified thread after the specified delay.
137 * @param handle The thread handle. 137 * @param thread The thread to wake after the delay.
138 * @param nanoseconds The time this thread will be allowed to sleep for. 138 * @param nanoseconds The time this thread will be allowed to sleep for.
139 */ 139 */
140void WakeThreadAfterDelay(Thread* thread, s64 nanoseconds); 140void WakeThreadAfterDelay(Thread* thread, s64 nanoseconds);
diff --git a/src/core/hle/kernel/timer.h b/src/core/hle/kernel/timer.h
index f8aa66b60..8170e82d4 100644
--- a/src/core/hle/kernel/timer.h
+++ b/src/core/hle/kernel/timer.h
@@ -33,7 +33,7 @@ ResultCode ClearTimer(Handle handle);
33 33
34/** 34/**
35 * Creates a timer 35 * Creates a timer
36 * @param Handle to newly created Timer object 36 * @param handle Handle to the newly created Timer object
37 * @param reset_type ResetType describing how to create the timer 37 * @param reset_type ResetType describing how to create the timer
38 * @param name Optional name of timer 38 * @param name Optional name of timer
39 * @return ResultCode of the error 39 * @return ResultCode of the error
diff --git a/src/core/hle/service/cfg/cfg.h b/src/core/hle/service/cfg/cfg.h
index c74527ca4..e818d7bdc 100644
--- a/src/core/hle/service/cfg/cfg.h
+++ b/src/core/hle/service/cfg/cfg.h
@@ -110,7 +110,7 @@ ResultCode GetConfigInfoBlock(u32 block_id, u32 size, u32 flag, u8* output);
110 * The config savegame file in the filesystem is not updated. 110 * The config savegame file in the filesystem is not updated.
111 * @param block_id The id of the block we want to create 111 * @param block_id The id of the block we want to create
112 * @param size The size of the block we want to create 112 * @param size The size of the block we want to create
113 * @param flag The flags of the new block 113 * @param flags The flags of the new block
114 * @param data A pointer containing the data we will write to the new block 114 * @param data A pointer containing the data we will write to the new block
115 * @returns ResultCode indicating the result of the operation, 0 on success 115 * @returns ResultCode indicating the result of the operation, 0 on success
116 */ 116 */
diff --git a/src/core/hle/service/fs/archive.h b/src/core/hle/service/fs/archive.h
index b3f2134f2..2cdfaa7e9 100644
--- a/src/core/hle/service/fs/archive.h
+++ b/src/core/hle/service/fs/archive.h
@@ -42,7 +42,7 @@ ResultVal<ArchiveHandle> OpenArchive(ArchiveIdCode id_code, FileSys::Path& archi
42 42
43/** 43/**
44 * Closes an archive 44 * Closes an archive
45 * @param id_code IdCode of the archive to open 45 * @param handle Handle to the archive to close
46 */ 46 */
47ResultCode CloseArchive(ArchiveHandle handle); 47ResultCode CloseArchive(ArchiveHandle handle);
48 48