summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorphintuka <phintuka>2012-01-24 14:47:22 +0000
committerphintuka <phintuka>2012-01-24 14:47:22 +0000
commitda0df6acb3054aabad945f00580ce75211d42768 (patch)
tree72c706df9ebe5ce707fd04d089d92414338d3646
parent112c4745d5cf02f9afbebcb59dd8437bea87b9b5 (diff)
downloadxineliboutput-da0df6acb3054aabad945f00580ce75211d42768.tar.gz
xineliboutput-da0df6acb3054aabad945f00580ce75211d42768.tar.bz2
XDouble -> double in code that may be used without XRender
-rw-r--r--xine_sxfe_frontend.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/xine_sxfe_frontend.c b/xine_sxfe_frontend.c
index 27502a25..ce6ec421 100644
--- a/xine_sxfe_frontend.c
+++ b/xine_sxfe_frontend.c
@@ -4,7 +4,7 @@
* See the main source file 'xineliboutput.c' for copyright information and
* how to reach the author.
*
- * $Id: xine_sxfe_frontend.c,v 1.182 2012-01-24 14:34:27 phintuka Exp $
+ * $Id: xine_sxfe_frontend.c,v 1.183 2012-01-24 14:47:22 phintuka Exp $
*
*/
@@ -900,8 +900,8 @@ static void hud_osd_set_video_window(sxfe_t *this, const struct osd_command_s *c
LOGDBG("HUD osd VideoWindow: unscaled video win: %d %d %d %d", cmd->x, cmd->y, cmd->w, cmd->h);
// Compute the coordinates of the video window
- XDouble scale_x = (XDouble)this->x.width / (XDouble)this->osd_width;
- XDouble scale_y = (XDouble)this->x.height / (XDouble)this->osd_height;
+ double scale_x = (double)this->x.width / (double)this->osd_width;
+ double scale_y = (double)this->x.height / (double)this->osd_height;
int x = cmd->x;
int y = cmd->y;