mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-25 13:35:12 +00:00
Slight adjustment to script error message
This commit is contained in:
parent
12ea360360
commit
21dc525a75
1 changed files with 1 additions and 1 deletions
|
@ -17,7 +17,7 @@ void smlua_mod_error(void) {
|
||||||
if (mod == NULL) { mod = gLuaLastHookMod; }
|
if (mod == NULL) { mod = gLuaLastHookMod; }
|
||||||
if (mod == NULL) { return; }
|
if (mod == NULL) { return; }
|
||||||
char txt[255] = { 0 };
|
char txt[255] = { 0 };
|
||||||
snprintf(txt, 254, "%s has lua script errors!", mod->name);
|
snprintf(txt, 254, "'%s' has script errors!", mod->name);
|
||||||
djui_lua_error(txt);
|
djui_lua_error(txt);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue