mirror of https://github.com/bsnes-emu/bsnes.git
12 lines
151 B
C++
12 lines
151 B
C++
|
#pragma once
|
||
|
|
||
|
namespace nall { namespace DSP {
|
||
|
|
||
|
#if defined(NALL_DSP_PRECISION)
|
||
|
using real = NALL_DSP_PRECISION;
|
||
|
#else
|
||
|
using real = double;
|
||
|
#endif
|
||
|
|
||
|
}}
|