Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
W
wolf3d
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PocketInsanity
wolf3d
Commits
0ce3e007
Commit
0ce3e007
authored
Nov 23, 2000
by
Steven Fuller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed a dumb bug I made when messing with the DrawHighScores function. (now
the scores actually show).
parent
3be1f771
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
4 deletions
+4
-4
wl_draw.c
src/wl_draw.c
+1
-1
wl_inter.c
src/wl_inter.c
+3
-3
No files found.
src/wl_draw.c
View file @
0ce3e007
...
...
@@ -487,7 +487,7 @@ static void DrawScaleds()
visptr
->
shapenum
=
obj
->
temp1
;
// special shape
if
(
obj
->
state
->
rotate
)
visptr
->
shapenum
+=
CalcRotate
(
obj
);
visptr
->
shapenum
+=
CalcRotate
(
obj
);
if
(
visptr
<
&
vislist
[
MAXVISABLE
-
1
])
/* don't let it overflow */
visptr
++
;
...
...
src/wl_inter.c
View file @
0ce3e007
...
...
@@ -252,7 +252,7 @@ void Victory (void)
==================
*/
void
PG13
(
void
)
void
PG13
(
)
{
VW_FadeOut
();
VW_Bar
(
0
,
0
,
320
,
200
,
0x82
);
// background
...
...
@@ -972,7 +972,7 @@ void DrawHighScores()
//
// level
//
ultoa
(
s
->
completed
,
buffer
,
10
);
ultoa
(
s
->
completed
,
buffer
,
10
);
#ifndef SPEAR
for
(
str
=
buffer
;
*
str
;
str
++
)
*
str
=
*
str
+
(
129
-
'0'
);
// Used fixed-width numbers (129...)
...
...
@@ -1003,7 +1003,7 @@ void DrawHighScores()
//
// score
//
ultoa
(
s
->
score
,
buffer
1
,
10
);
ultoa
(
s
->
score
,
buffer
,
10
);
#ifndef SPEAR
for
(
str
=
buffer
;
*
str
;
str
++
)
*
str
=
*
str
+
(
129
-
'0'
);
// Used fixed-width numbers (129...)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment