From c9790d0c1994502ef59cdc3e86687e534776788c Mon Sep 17 00:00:00 2001 From: Elias Batek Date: Thu, 30 Jan 2025 01:26:26 +0100 Subject: [PATCH] Fix a few things --- pixmappaint.d | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/pixmappaint.d b/pixmappaint.d index 6005bf1..8b6c50e 100644 --- a/pixmappaint.d +++ b/pixmappaint.d @@ -393,7 +393,7 @@ struct UDecimal { /// public this(uint initialValue) { - _value = (long(initialValue) << 32); + _value = (ulong(initialValue) << 32); } private static UDecimal make(ulong internal) { @@ -3332,10 +3332,11 @@ private void scaleToImpl(ScalingFilter filter)(const Pixmap source, Pixmap targe if (directions[0] == none) { if (directions[1] == none) { - version (none) + version (none) { scaleToLinearImpl!(none, none)(); - else - return; + } else { + target.data[] = source.data[]; + } } else if (directions[1] == up) { scaleToLinearImpl!(none, up)(); } else /* if (directions[1] == down) */ {