mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2026-04-22 10:01:46 +00:00
Add newline to lua print func (oops)
This commit is contained in:
parent
b56dc3e581
commit
d4fe447c2d
1 changed files with 1 additions and 1 deletions
|
|
@ -79,7 +79,7 @@ int smlua_func_print(lua_State *L) {
|
|||
completeString[pos] = '\0';
|
||||
|
||||
// print to terminal and console
|
||||
log_to_terminal("%s", completeString);
|
||||
log_to_terminal("%s\n", completeString);
|
||||
djui_console_message_create(completeString, CONSOLE_MESSAGE_INFO);
|
||||
|
||||
free(completeString);
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue