* Add nxlink support * use libnx nro.h * make sure path doesn't overflow * convert indentation to spaces
9 lines
158 B
C
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);
|
|
} |