Fix compilation issue caused due to errorConf. (#355)
This commit is contained in:
parent
94aabe35f3
commit
ff559d2a90
@ -52,7 +52,7 @@ typedef enum
|
||||
|
||||
typedef struct
|
||||
{
|
||||
errorType errorType;
|
||||
errorType type;
|
||||
int errorCode;
|
||||
errorScreenFlag upperScreenFlag;
|
||||
u16 useLanguage;
|
||||
|
@ -10,7 +10,7 @@
|
||||
void errorInit(errorConf* err, errorType type, CFG_Language lang)
|
||||
{
|
||||
memset(err, 0, sizeof(*err));
|
||||
err->errorType = type;
|
||||
err->type = type;
|
||||
err->useLanguage = lang;
|
||||
err->upperScreenFlag = ERROR_NORMAL;
|
||||
err->eulaVersion = 0;
|
||||
|
Loading…
Reference in New Issue
Block a user