Skip to content

Commit

Permalink
Fixed|All Games|Tools: Minor compiler warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Feb 5, 2017
1 parent 2c18001 commit 0b57cf3
Show file tree
Hide file tree
Showing 7 changed files with 174 additions and 167 deletions.
2 changes: 1 addition & 1 deletion doomsday/apps/plugins/doom64/src/p_enemy.c
Original file line number Diff line number Diff line change
Expand Up @@ -1338,7 +1338,7 @@ void C_DECL A_MotherMissle(mobj_t *actor)
*/
void C_DECL A_MotherBallExplode(mobj_t* spread)
{
int i;
uint i;

for(i = 0; i < 8; ++i)
{
Expand Down
4 changes: 2 additions & 2 deletions doomsday/apps/plugins/heretic/src/p_enemy.c
Original file line number Diff line number Diff line change
Expand Up @@ -1696,7 +1696,7 @@ void C_DECL A_WhirlwindSeek(mobj_t* actor)

void C_DECL A_HeadIceImpact(mobj_t* ice)
{
int i;
uint i;

for(i = 0; i < 8; ++i)
{
Expand Down Expand Up @@ -2314,7 +2314,7 @@ void C_DECL A_VolcanoBlast(mobj_t* volcano)

void C_DECL A_VolcBallImpact(mobj_t* ball)
{
int i;
uint i;

if(ball->origin[VZ] <= ball->floorZ)
{
Expand Down
8 changes: 4 additions & 4 deletions doomsday/apps/plugins/heretic/src/p_pspr.c
Original file line number Diff line number Diff line change
Expand Up @@ -886,13 +886,13 @@ void C_DECL A_DeathBallImpact(mobj_t* ball)

void C_DECL A_SpawnRippers(mobj_t* actor)
{
int i;
uint i;

for(i = 0; i < 8; ++i)
{
angle_t angle = i * ANG45;
uint an;
mobj_t* ripper;
angle_t angle = i * ANG45;
uint an;
mobj_t *ripper;

if((ripper = P_SpawnMobj(MT_RIPPER, actor->origin, angle, 0)))
{
Expand Down
2 changes: 1 addition & 1 deletion doomsday/apps/plugins/hexen/src/p_enemy.c
Original file line number Diff line number Diff line change
Expand Up @@ -3183,7 +3183,7 @@ void C_DECL A_IceGuyDie(mobj_t *mo)
void C_DECL A_IceGuyMissileExplode(mobj_t *mo)
{
mobj_t *pmo;
int i;
uint i;

for(i = 0; i < 8; ++i)
{
Expand Down
2 changes: 1 addition & 1 deletion doomsday/tools/wadtool/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# WAD Creation Tool for Doomsday
# (c) 2005-2015 Jaakko Keränen <jaakko.keranen@iki.fi>
# (c) 2005-2017 Jaakko Keränen <jaakko.keranen@iki.fi>
# License: GPL 2.0+

cmake_minimum_required (VERSION 3.1)
Expand Down
Loading

0 comments on commit 0b57cf3

Please sign in to comment.