From 3e4753f9855c8b916e6ae2a20ee5d11b5e91170e Mon Sep 17 00:00:00 2001 From: kayomn Date: Mon, 20 Feb 2023 00:35:29 +0000 Subject: [PATCH] Fix incorrect type aliases in coral library --- source/coral.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/coral.cpp b/source/coral.cpp index 6e2826f..3e530e5 100644 --- a/source/coral.cpp +++ b/source/coral.cpp @@ -42,9 +42,9 @@ export namespace coral { usize const i32_max = 0xffffffff; - using u64 = uint32_t; + using u64 = uint64_t; - using i64 = uint32_t; + using i64 = uint64_t; using f32 = float;