Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
SRB2
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
STJr
SRB2
Commits
0250040a
Commit
0250040a
authored
7 years ago
by
Alam Ed Arias
Browse files
Options
Downloads
Patches
Plain Diff
Win32: all fails of DD and try more to stop format-overflow errors
parent
a4072260
No related branches found
Branches containing commit
No related tags found
1 merge request
!252
OpenGL: Public flatsprite: The Fixening
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
appveyor.yml
+4
-0
4 additions, 0 deletions
appveyor.yml
src/win32/win_cd.c
+2
-2
2 additions, 2 deletions
src/win32/win_cd.c
with
6 additions
and
2 deletions
appveyor.yml
+
4
−
0
View file @
0250040a
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/win32/win_cd.c
+
2
−
2
View file @
0250040a
...
...
@@ -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
;
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment