Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Richard Gobeille
EDuke32
Commits
ff06a72d
Commit
ff06a72d
authored
Jan 03, 2020
by
Evan Ramos
Browse files
actors.cpp: Address -Wsometimes-uninitialized warnings
From-SVN: r8528
parent
f32ced9a
Changes
1
Hide whitespace changes
Inline
Side-by-side
source/duke3d/src/actors.cpp
View file @
ff06a72d
...
...
@@ -163,7 +163,7 @@ void A_RadiusDamageObject_Internal(int const spriteNum, int const otherSprite, i
{
// this is really weird
int
const
k
=
blastRadius
/
3
;
int
dmgBase
,
dmgFuzz
;
int
dmgBase
=
0
,
dmgFuzz
=
1
;
if
(
spriteDist
<
k
)
dmgBase
=
dmg3
,
dmgFuzz
=
dmg4
;
...
...
Write
Preview
Supports
Markdown
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