From: Eric Pouech eric.pouech@gmail.com
--- dlls/wined3d/surface.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/dlls/wined3d/surface.c b/dlls/wined3d/surface.c index 4d2ef06be86..f20ff328192 100644 --- a/dlls/wined3d/surface.c +++ b/dlls/wined3d/surface.c @@ -25,7 +25,6 @@ * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ -#define WINE_NO_LONG_TYPES /* temporary */
#include "wined3d_private.h"
@@ -1417,10 +1416,10 @@ HRESULT texture2d_blt(struct wined3d_texture *dst_texture, unsigned int dst_sub_ if (fx) { TRACE("fx %#x.\n", fx->fx); - TRACE("dst_color_key {0x%08x, 0x%08x}.\n", + TRACE("dst_color_key {0x%08lx, 0x%08lx}.\n", fx->dst_color_key.color_space_low_value, fx->dst_color_key.color_space_high_value); - TRACE("src_color_key {0x%08x, 0x%08x}.\n", + TRACE("src_color_key {0x%08lx, 0x%08lx}.\n", fx->src_color_key.color_space_low_value, fx->src_color_key.color_space_high_value); TRACE("resolve_format_id %s.\n", debug_d3dformat(fx->resolve_format_id));