Slight adjustment to script error message

This commit is contained in:
MysterD 2022-04-16 22:50:23 -07:00
parent 0c696edf0c
commit 01aaed6a8a
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ void smlua_mod_error(void) {
if (mod == NULL) { mod = gLuaLastHookMod; }
if (mod == NULL) { return; }
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);
}