SSBM Decomp
Loading...
Searching...
No Matches
plbonusinline.h
Go to the documentation of this file.
1#ifndef MELEE_PL_PLBONUSLIB_INLINE_H
2#define MELEE_PL_PLBONUSLIB_INLINE_H
3
5
6static inline float pl_CalculateAverage(float val, float total)
7{
8 HSD_ASSERT(16, total != 0.0F);
9 return val / total;
10}
11
12#endif
#define HSD_ASSERT(line, cond)
Definition debug.h:19
static float pl_CalculateAverage(float val, float total)
Definition plbonusinline.h:6