From 1a3bee9158eef535cdfd9173809aee1956bf71e7 Mon Sep 17 00:00:00 2001 From: MylekGrey Date: Fri, 12 Aug 2016 00:12:36 -0500 Subject: [PATCH 1/2] =?UTF-8?q?=E8=8B=B1=E8=AA=9E=E3=81=AE=E3=83=AC?= =?UTF-8?q?=E3=83=99=E3=83=AB0/1=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin/lang/english.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/lang/english.json b/bin/lang/english.json index 613d662..e33687d 100644 --- a/bin/lang/english.json +++ b/bin/lang/english.json @@ -18,7 +18,7 @@ "IDC_RADIO_MODE_NOISE":"Denoise only", "IDC_RADIO_AUTO_SCALE":"Magnify && Auto Denoise", "IDC_STATIC_JPEG_NOISE_LEVEL":"Denoise level", -"IDC_RADIONOISE_LEVEL1":"Level 0", +"IDC_RADIONOISE_LEVEL0":"Level 0", "IDC_RADIONOISE_LEVEL1":"Level 1", "IDC_RADIONOISE_LEVEL2":"Level 2", "IDC_RADIONOISE_LEVEL3":"Level 3", From 90284315e92bd3d5c845859baa982d375e8d9525 Mon Sep 17 00:00:00 2001 From: "nagadomi@nurs.or.jp" Date: Mon, 15 Aug 2016 19:05:48 +0900 Subject: [PATCH 2/2] =?UTF-8?q?DLL=E7=94=A8API=E3=81=A7=E5=87=BA=E5=8A=9B?= =?UTF-8?q?=E3=83=90=E3=83=83=E3=83=95=E3=82=A1=E3=82=92=E8=B6=85=E3=81=88?= =?UTF-8?q?=E3=81=A6=E6=9B=B8=E3=81=8D=E8=BE=BC=E3=82=80=E3=81=93=E3=81=A8?= =?UTF-8?q?=E3=81=8C=E3=81=82=E3=82=8B=E4=B8=8D=E5=85=B7=E5=90=88=E3=82=92?= =?UTF-8?q?=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- common/waifu2x.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/waifu2x.cpp b/common/waifu2x.cpp index 767de1b..86c82c1 100644 --- a/common/waifu2x.cpp +++ b/common/waifu2x.cpp @@ -845,7 +845,7 @@ Waifu2x::eWaifu2xError Waifu2x::waifu2x(const double factor, const void* source, const auto width = out_image.size().width; const auto stride = out_image.step1(); for (int i = 0; i < out_image.size().height; i++) - memcpy((uint8_t *)dest + out_stride * i, out_image.data + stride * i, stride); + memcpy((uint8_t *)dest + out_stride * i, out_image.data + stride * i, out_stride); } return Waifu2x::eWaifu2xError_OK;