Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
EDuke32
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
92
Issues
92
List
Boards
Labels
Service Desk
Milestones
Merge Requests
8
Merge Requests
8
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Richard Gobeille
EDuke32
Commits
ead785f4
Commit
ead785f4
authored
Sep 22, 2020
by
Dino Bollinger
Committed by
Dino Bollinger
Oct 02, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Mapster32: Fix picnum upper bound for special function 2
parent
188e1462
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
source/duke3d/src/m32common.cpp
source/duke3d/src/m32common.cpp
+1
-1
No files found.
source/duke3d/src/m32common.cpp
View file @
ead785f4
...
...
@@ -1725,7 +1725,7 @@ static void FuncMenu_Process(const StatusBarMenu *m, int32_t col, int32_t row)
{
char
tempbuf
[
64
];
Bsprintf
(
tempbuf
,
"Delete all sprites of tile #: "
);
i
=
getnumber16
(
tempbuf
,
-
1
,
MAX
SPRIT
ES
-
1
,
1
);
i
=
getnumber16
(
tempbuf
,
-
1
,
MAX
TIL
ES
-
1
,
1
);
if
(
i
>=
0
)
{
int32_t
k
=
0
;
...
...
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