mirror of
https://github.com/lltcggie/waifu2x-caffe.git
synced 2025-06-26 13:42:48 +00:00
残り時間予想のバグ修正
This commit is contained in:
parent
5be7d8f92e
commit
a309c1f367
@ -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);
|
||||
|
Loading…
x
Reference in New Issue
Block a user