Fix missing server flip in terminal

This commit is contained in:
K. Lange 2018-02-25 20:41:50 +09:00 committed by Kevin Lange
parent c56ecb420e
commit fc6afe84e3
1 changed files with 1 additions and 1 deletions

View File

@ -123,7 +123,7 @@ static uint64_t get_ticks(void) {
static void display_flip(void) {
if (l_x != INT32_MAX && l_y != INT32_MAX) {
//yutani_flip_region(yctx, window, l_x, l_y, r_x - l_x, r_y - l_y);
yutani_flip_region(yctx, window, l_x, l_y, r_x - l_x, r_y - l_y);
l_x = INT32_MAX;
l_y = INT32_MAX;
r_x = -1;