no message

This commit is contained in:
BADIM-PC\Vadim 2018-02-14 14:06:25 +03:00
parent 17cad0a9eb
commit f06ae65114
2 changed files with 3 additions and 5 deletions

View File

@ -937,7 +937,8 @@ static void processKeyboard(Code* code)
else if(keyWasPressed(tic_key_tab)) doTab(code, shift, ctrl); else if(keyWasPressed(tic_key_tab)) doTab(code, shift, ctrl);
} }
updateEditor(code); if(tic->ram.input.keyboard.data)
updateEditor(code);
} }
static void processGestures(Code* code) static void processGestures(Code* code)
@ -1410,8 +1411,6 @@ static void tick(Code* code)
if(code->cursor.delay) if(code->cursor.delay)
code->cursor.delay--; code->cursor.delay--;
code->cursor.tick++;
switch(code->mode) switch(code->mode)
{ {
case TEXT_RUN_CODE: runProject(); break; case TEXT_RUN_CODE: runProject(); break;
@ -1466,7 +1465,7 @@ void initCode(Code* code, tic_mem* tic, tic_code* src)
.src = src->data, .src = src->data,
.tick = tick, .tick = tick,
.escape = escape, .escape = escape,
.cursor = {{src->data, NULL, 0, 0}, NULL, 0}, .cursor = {{src->data, NULL, 0}, NULL, 0},
.rect = {0, TOOLBAR_SIZE + 1, TIC80_WIDTH, TIC80_HEIGHT - TOOLBAR_SIZE - TIC_FONT_HEIGHT - 1}, .rect = {0, TOOLBAR_SIZE + 1, TIC80_WIDTH, TIC80_HEIGHT - TOOLBAR_SIZE - TIC_FONT_HEIGHT - 1},
.scroll = {0, 0, {0, 0}, false}, .scroll = {0, 0, {0, 0}, false},
.tickCounter = 0, .tickCounter = 0,

View File

@ -39,7 +39,6 @@ struct Code
{ {
char* position; char* position;
char* selection; char* selection;
s32 tick;
s32 column; s32 column;
}; };