Skip to content
Snippets Groups Projects
Commit 0250040a authored by Alam Ed Arias's avatar Alam Ed Arias
Browse files

Win32: all fails of DD and try more to stop format-overflow errors

parent a4072260
No related branches found
No related tags found
1 merge request!252OpenGL: Public flatsprite: The Fixening
......@@ -39,6 +39,10 @@ configuration:
- SDL
- DD
matrix:
allow_failures:
- configuration: DD
before_build:
- set Path=%MINGW_SDK%\bin;%Path%
- i686-w64-mingw32-gcc --version
......
......@@ -180,9 +180,9 @@ static LPSTR hms(UINT seconds)
hours = minutes / 60;
minutes %= 60;
if (hours > 0)
sprintf (s, "%lu:%02u:%02u", (long unsigned int)hours, (unsigned char)minutes, (unsigned char)seconds);
sprintf (s, "%lu:%02u:%02u", (long unsigned int)hours, (unsigned char)(minutes%99), (unsigned char)(seconds%99));
else
sprintf (s, "%2u:%02u", (unsigned char)minutes, (unsigned char)seconds);
sprintf (s, "%2u:%02u", (unsigned char)(minutes%99), (unsigned char)(seconds%99));
return s;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment