From f3a3a84aa01a5d456123afe878f46374a16232ed Mon Sep 17 00:00:00 2001 From: Junkyeong Kim Date: Fri, 7 Feb 2020 15:37:57 +0900 Subject: [PATCH] e_output: fix value type error Change-Id: I662d5298c3862f8f4b1871eae5808d8a28cfa0ae Signed-off-by: Junkyeong Kim --- src/bin/e_output.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/e_output.c b/src/bin/e_output.c index cde1ab91ca..f31a651371 100644 --- a/src/bin/e_output.c +++ b/src/bin/e_output.c @@ -320,7 +320,7 @@ _e_output_zoom_coordinate_cal(E_Output *output) { int x = 0, y = 0; int w = 0, h = 0; - int zoomx = 0, zoomy = 0; + double zoomx = 0, zoomy = 0; int rotation_diff = 0; rotation_diff = (360 + output->zoom_conf.current_screen_rotation - output->zoom_conf.init_screen_rotation) % 360; -- 2.34.1