mirror of
https://github.com/switchbrew/libnx.git
synced 2025-07-06 03:12:15 +02:00
Fix argument name
This commit is contained in:
parent
7e42dfe3ca
commit
f41f0bea7a
@ -54,10 +54,10 @@ void errorConfigSetMinorCode(ErrorConfig* c, u32 code);
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Sets whether to use a custom error message.
|
* @brief Sets whether to use a custom error message.
|
||||||
* @param c ErrorConfig struct
|
* @param c ErrorConfig struct
|
||||||
* @param customText Whether to use a custom message.
|
* @param custom_text Whether to use a custom message.
|
||||||
*/
|
*/
|
||||||
void errorConfigSetCustomText(ErrorConfig* c, bool customText);
|
void errorConfigSetCustomText(ErrorConfig* c, bool custom_text);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Sets the short description.
|
* @brief Sets the short description.
|
||||||
|
@ -49,8 +49,8 @@ void errorConfigSetMinorCode(ErrorConfig* c, u32 code) {
|
|||||||
c->minor_code = code;
|
c->minor_code = code;
|
||||||
}
|
}
|
||||||
|
|
||||||
void errorConfigSetCustomText(ErrorConfig* c, bool customText) {
|
void errorConfigSetCustomText(ErrorConfig* c, bool custom_text) {
|
||||||
c->custom_text = customText;
|
c->custom_text = custom_text;
|
||||||
}
|
}
|
||||||
|
|
||||||
void errorConfigSetShortDescription(ErrorConfig* c, const char* str) {
|
void errorConfigSetShortDescription(ErrorConfig* c, const char* str) {
|
||||||
|
Loading…
Reference in New Issue
Block a user