mirror of
https://github.com/zeldaret/ss
synced 2026-07-11 14:48:32 -04:00
Fix some compiler warnings (#44)
This commit is contained in:
+1
-1
@@ -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);
|
||||
|
||||
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user