mirror of
https://git.code.sf.net/p/quake/game-source
synced 2024-11-10 06:31:52 +00:00
fix some uninit warnings
This commit is contained in:
parent
b6f1361263
commit
61a2e9b8ce
1 changed files with 4 additions and 0 deletions
|
@ -1365,6 +1365,7 @@ void(entity targ, entity attacker) ClientObituary =
|
||||||
bprint (PRINT_MEDIUM, targ.netname);
|
bprint (PRINT_MEDIUM, targ.netname);
|
||||||
bprint (PRINT_MEDIUM, " a new one\n");
|
bprint (PRINT_MEDIUM, " a new one\n");
|
||||||
return;
|
return;
|
||||||
|
deathstring = "bogus uninit warning";
|
||||||
}
|
}
|
||||||
deathstring2 = "'s quad rocket\n";
|
deathstring2 = "'s quad rocket\n";
|
||||||
}
|
}
|
||||||
|
@ -1401,6 +1402,9 @@ void(entity targ, entity attacker) ClientObituary =
|
||||||
deathstring2 = "'s discharge\n";
|
deathstring2 = "'s discharge\n";
|
||||||
else
|
else
|
||||||
deathstring2 = "'s shaft\n";
|
deathstring2 = "'s shaft\n";
|
||||||
|
} else {
|
||||||
|
deathstring = " dies misteriously ";
|
||||||
|
deathstring2 = " progs bug\n";
|
||||||
}
|
}
|
||||||
bprint (PRINT_MEDIUM,targ.netname);
|
bprint (PRINT_MEDIUM,targ.netname);
|
||||||
bprint (PRINT_MEDIUM,deathstring);
|
bprint (PRINT_MEDIUM,deathstring);
|
||||||
|
|
Loading…
Reference in a new issue