MCPcopy Create free account
hub / github.com/OpenFodder/openfodder / intToFrac

Function intToFrac

Source/Amiga/paula.hpp:47–47  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

45inline double fracToDouble(frac_t value) { return ((double)value) / FRAC_ONE; }
46
47inline frac_t intToFrac(int16 value) { return value << FRAC_BITS; }
48inline int16 fracToInt(frac_t value) { return value >> FRAC_BITS; }
49
50#endif

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected