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
1ae2b9f3
Commit
1ae2b9f3
authored
Dec 15, 2000
by
Steven Fuller
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
misc.c, misc.h: just changed itoa parameter from short to int
parent
cb67569f
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
2 additions
and
3 deletions
+2
-3
misc.c
src/misc.c
+1
-1
misc.h
src/misc.h
+1
-1
wl_draw.c
src/wl_draw.c
+0
-1
No files found.
src/misc.c
View file @
1ae2b9f3
...
...
@@ -80,7 +80,7 @@ char *strlwr(char *s)
return
s
;
}
char
*
itoa
(
short
int
value
,
char
*
string
,
int
radix
)
char
*
itoa
(
int
value
,
char
*
string
,
int
radix
)
{
/* wolf3d only uses radix 10 */
sprintf
(
string
,
"%d"
,
value
);
...
...
src/misc.h
View file @
1ae2b9f3
...
...
@@ -18,7 +18,7 @@ long filelength(int handle);
#define strnicmp strncasecmp
char
*
strlwr
(
char
*
s
);
char
*
itoa
(
short
int
value
,
char
*
string
,
int
radix
);
char
*
itoa
(
int
value
,
char
*
string
,
int
radix
);
char
*
ltoa
(
long
value
,
char
*
string
,
int
radix
);
char
*
ultoa
(
unsigned
long
value
,
char
*
string
,
int
radix
);
...
...
src/wl_draw.c
View file @
1ae2b9f3
...
...
@@ -110,7 +110,6 @@ static void TransformActor(objtype *ob)
ob
->
viewx
=
centerx
+
ny
*
scale
/
nx
;
ob
->
viewheight
=
heightnumerator
/
(
nx
>>
8
);
}
/*
...
...
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