Fix some compiler warnings (#44)

This commit is contained in:
robojumper
2024-10-01 14:55:30 +02:00
committed by GitHub
parent 4d9a0d6390
commit eae2d7a2bf
3 changed files with 7 additions and 7 deletions
+1 -1
View File
@@ -4,7 +4,7 @@
#include <common.h>
namespace cM {
static s16 atan2s(f32, f32);
s16 atan2s(f32, f32);
void initRnd(s32);
f32 rnd();
int rndInt(int max);
+1 -1
View File
@@ -47,7 +47,7 @@ struct DataRef {
template <typename T> struct Table {
u32 count; // at 0x0
T items[]; // at 0x4
T items[1]; // at 0x4
};
template <typename T0, typename T1, typename T2, typename T3>