ClientGame_EventParse() now has returns either 0 or 1 to signal successful overrides.
This commit is contained in:
parent
8b55c8acef
commit
27c69ffecc
1 changed files with 5 additions and 1 deletions
|
@ -14,7 +14,7 @@
|
||||||
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void
|
int
|
||||||
ClientGame_EventParse(float fHeader)
|
ClientGame_EventParse(float fHeader)
|
||||||
{
|
{
|
||||||
switch (fHeader) {
|
switch (fHeader) {
|
||||||
|
@ -120,5 +120,9 @@ ClientGame_EventParse(float fHeader)
|
||||||
|
|
||||||
HUD_WeaponPickupNotify(w);
|
HUD_WeaponPickupNotify(w);
|
||||||
break;
|
break;
|
||||||
|
default:
|
||||||
|
return (0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
return (1);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue