MCPcopy Create free account
hub / github.com/N64Recomp/N64Recomp / do_floor_l_s

Function do_floor_l_s

LiveRecomp/live_generator.cpp:871–873  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

869}
870
871int64_t do_floor_l_s(float num) {
872 return (int64_t)floorf(num);
873}
874
875int64_t do_floor_l_d(double num) {
876 return (int64_t)floor(num);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected