nx-hbmenu/common/math.h
Dave Murphy ebced71ec3 Add nxlink support (#27)
* Add nxlink support

* use libnx nro.h

* make sure path doesn't overflow

* convert indentation to spaces
2018-03-19 21:42:58 +01:00

9 lines
158 B
C

#pragma once
#include "common.h"
float approxSin(float x);
static inline float clamp(float x, float min, float max) {
return fmin(fmax(x, min), max);
}