From a49f0ef57616fc67776c046812e4a51d056749ed Mon Sep 17 00:00:00 2001 From: OV2 Date: Thu, 4 Apr 2013 23:21:54 +0200 Subject: [PATCH] win32: fix x/y scale types --- gfx/d3d9/d3d9.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gfx/d3d9/d3d9.cpp b/gfx/d3d9/d3d9.cpp index af368060cf..8a90024186 100644 --- a/gfx/d3d9/d3d9.cpp +++ b/gfx/d3d9/d3d9.cpp @@ -933,9 +933,9 @@ void D3DVideo::init_chain_multipass(const video_info_t &info) } else { - if (conf.get(attr_type_x, attr)) + if (conf.get(attr_type_x, attr_x)) has_scale = true; - if (conf.get(attr_type_y, attr)) + if (conf.get(attr_type_y, attr_y)) has_scale = true; }