Fix missing return

develop
Japa 2016-03-20 22:04:21 +05:30
parent a3ddc63836
commit 2f4a5e8449
1 changed files with 2 additions and 0 deletions

@ -2054,4 +2054,6 @@ static command_result CopyScreen(color_ostream &stream, const EmptyMessage *in,
tile->set_foreground(gps->screen[index + 1] | (gps->screen[index + 3] * 8));
tile->set_background(gps->screen[index]);
}
return CR_OK;
}