mirror of
https://github.com/coop-deluxe/sm64coopdx.git
synced 2024-11-22 12:05:11 +00:00
Fix merge conflicts
This commit is contained in:
parent
9a6d2a464a
commit
1a7a75bda3
2 changed files with 1 additions and 11 deletions
|
@ -37,7 +37,7 @@ void reset_djui(void) {
|
|||
sDjuiLuaErrorTimeout = 0;
|
||||
if (gDjuiRoot) djui_base_destroy(&gDjuiRoot->base);
|
||||
|
||||
if (gDjuiConsole) djui_base_destroy(&gDjuiConsole->panel->base);
|
||||
if (gDjuiConsole) djui_base_destroy(&gDjuiConsole->base);
|
||||
extern u32 sDjuiConsoleMessages;
|
||||
sDjuiConsoleMessages = 0;
|
||||
|
||||
|
|
|
@ -476,16 +476,6 @@ static void djui_chat_box_input_on_text_input(struct DjuiBase *base, char* text)
|
|||
}
|
||||
}
|
||||
|
||||
static void djui_chat_box_input_on_text_input(struct DjuiBase *base, char* text) {
|
||||
char previousText[MAX_MSG_LENGTH];
|
||||
strncpy(previousText, gDjuiChatBox->chatInput->buffer, MAX_MSG_LENGTH - 1);
|
||||
djui_inputbox_on_text_input(base, text);
|
||||
if (strcmp(previousText, gDjuiChatBox->chatInput->buffer) != 0) {
|
||||
reset_tab_completion_all();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
void djui_chat_box_toggle(void) {
|
||||
if (gDjuiChatBox == NULL) { return; }
|
||||
if (!gDjuiChatBoxFocus) { sDjuiChatBoxClearText = true; }
|
||||
|
|
Loading…
Reference in a new issue