Core: fix incorrect typedef for f64 (double-precision floating point)

f64 was unused but will be used.
This commit is contained in:
Kawe Mazidjatari 2024-09-07 00:26:48 +02:00
parent 36484dbb82
commit 1a551739b4

View File

@ -53,7 +53,7 @@ typedef float float32;
typedef double float64;
typedef float32 f32;
typedef float32 f64;
typedef float64 f64;
//-----------------------------------------------------------------------------
// 8-bit <--> 64-bit wide boolean type
typedef int8 b8;