diff options
author | PikalaxALT <PikalaxALT@users.noreply.github.com> | 2018-12-17 09:24:56 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-17 09:24:56 -0500 |
commit | 07d63fc7faa20317bc49fd16674468fb1510271f (patch) | |
tree | 3a5c0972149b2b5c7598b67ea70bcdedf616eb0c /include/util.h | |
parent | 63c205e7d0094756ea851e0aed0852671329905c (diff) | |
parent | 0aceac2d340328b1d2af539820e872f04bda6214 (diff) |
Merge pull request #31 from PikalaxALT/mevent
Decompile mevent.s; disassemble script pointers; decompile berry fix payload
Diffstat (limited to 'include/util.h')
-rw-r--r-- | include/util.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/util.h b/include/util.h index a22cc77fa..e0034d816 100644 --- a/include/util.h +++ b/include/util.h @@ -12,8 +12,8 @@ u8 CreateInvisibleSpriteWithCallback(void (*)(struct Sprite *)); void StoreWordInTwoHalfwords(u16 *, u32); void LoadWordFromTwoHalfwords(u16 *, u32 *); int CountTrailingZeroBits(u32 value); -u16 CalcCRC16(u8 *data, s32 length); -u16 CalcCRC16WithTable(u8 *data, u32 length); +u16 CalcCRC16(const u8 *data, s32 length); +u16 CalcCRC16WithTable(const u8 *data, u32 length); u32 CalcByteArraySum(const u8* data, u32 length); #endif // GUARD_UTIL_H |