From a309c1f3677ea7b07efc29fdf13aaf1ede108a27 Mon Sep 17 00:00:00 2001 From: lltcggie Date: Sat, 19 Mar 2016 21:46:58 +0900 Subject: [PATCH] =?UTF-8?q?=E6=AE=8B=E3=82=8A=E6=99=82=E9=96=93=E4=BA=88?= =?UTF-8?q?=E6=83=B3=E3=81=AE=E3=83=90=E3=82=B0=E4=BF=AE=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- waifu2x-caffe-gui/Source.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/waifu2x-caffe-gui/Source.cpp b/waifu2x-caffe-gui/Source.cpp index 8ef6d35..f8cf8bd 100644 --- a/waifu2x-caffe-gui/Source.cpp +++ b/waifu2x-caffe-gui/Source.cpp @@ -1089,7 +1089,7 @@ public: const int64_t sec = TimeLeftNow % 60; const int64_t min = (TimeLeftNow / 60) % 60; - const int64_t hour = (TimeLeftNow / 60 / 60) % 60; + const int64_t hour = (TimeLeftNow / 60 / 60); TCHAR msg[1024]; _stprintf_s(msg, TEXT("%s: %02d:%02d:%02d"), langStringList.GetString(L"MessageTimeLeft").c_str(), hour, min, sec);