Бранимир Караџић 1 year ago
parent
commit
0b8bb71897
1 changed files with 3 additions and 1 deletions
  1. 3 1
      include/bx/bx.h

+ 3 - 1
include/bx/bx.h

@@ -117,7 +117,7 @@ namespace bx
 	///
 	/// @param[in] _location Source code location where function is called.
 	/// @param[in] _format Printf style format.
-	/// @param[in] ... Arguments for `_format` specification.
+	/// @param[in] _argList Arguments for `_format` specification.
 	///
 	/// @returns True if assert should stop code execution, otherwise returns false.
 	///
@@ -127,6 +127,8 @@ namespace bx
 	///
 	/// @param[in] _assertHandlerFn Pointer to AssertHandlerFn function.
 	///
+	/// @remarks It can be set only once. This is usually done on application startup.
+	///
 	void setAssertHandler(AssertHandlerFn _assertHandlerFn);
 
 	/// Assert function calls AssertHandlerFn.