09-22-2016, 11:51 AM
Bug:
timeGetTime-t_time+100*10000 expression type is int, and it overflows.
in MPW_WndProc replace
str s=TimeSpanToStr(timeGetTime-t_time+100*10000)
to
str s=TimeSpanToStr(timeGetTime-t_time+100*10000L)
timeGetTime-t_time+100*10000 expression type is int, and it overflows.
in MPW_WndProc replace
str s=TimeSpanToStr(timeGetTime-t_time+100*10000)
to
str s=TimeSpanToStr(timeGetTime-t_time+100*10000L)