mirror of
https://github.com/Ed94/Odin.git
synced 2026-08-09 09:08:16 +00:00
Minor clean up of comments
This commit is contained in:
Vendored
+4
-2
@@ -80,7 +80,8 @@ foreign lib {
|
||||
HasHostError :: proc(stream: Stream) -> b32 ---
|
||||
}
|
||||
|
||||
/** Translate portmidi error number into human readable message.
|
||||
/**
|
||||
Translate portmidi error number into human readable message.
|
||||
These strings are constants (set at compile time) so client has
|
||||
no need to allocate storage
|
||||
*/
|
||||
@@ -92,7 +93,8 @@ GetErrorText :: proc (errnum: Error) -> string {
|
||||
return string(Pm_GetErrorText(errnum))
|
||||
}
|
||||
|
||||
/** Translate portmidi host error into human readable message.
|
||||
/**
|
||||
Translate portmidi host error into human readable message.
|
||||
These strings are computed at run time, so client has to allocate storage.
|
||||
After this routine executes, the host error is cleared.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user