diff options
Diffstat (limited to 'arm9/lib/include')
-rw-r--r-- | arm9/lib/include/FS_file.h | 2 | ||||
-rw-r--r-- | arm9/lib/include/GX_g2.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arm9/lib/include/FS_file.h b/arm9/lib/include/FS_file.h index 6a4bea80..cfb043af 100644 --- a/arm9/lib/include/FS_file.h +++ b/arm9/lib/include/FS_file.h @@ -187,7 +187,7 @@ BOOL FS_CloseFile(FSFile * p_file); BOOL FS_WaitAsync(FSFile * p_file); int FS_ReadFileAsync(FSFile * p_file, void * dst, s32 len); int FS_ReadFile(FSFile * p_file, void * dst, s32 len); -BOOL FS_SeekFile(FSFile * p_file, int offset, FSSeekFileMode origin); +BOOL FS_SeekFile(FSFile * p_file, s32 offset, FSSeekFileMode origin); BOOL FS_ChangeDir(const char * path); static inline u32 const FS_GetFileImageTop(volatile const FSFile * p_file) { diff --git a/arm9/lib/include/GX_g2.h b/arm9/lib/include/GX_g2.h index f8d86df0..d1d1c82c 100644 --- a/arm9/lib/include/GX_g2.h +++ b/arm9/lib/include/GX_g2.h @@ -7,7 +7,7 @@ void G2x_SetBGyAffine_(u32 *ptr, struct Mtx22 *mtx, fx32 a, fx32 b, fx32 c, fx32 void G2x_SetBlendAlpha_(u32 *ptr, fx32 a, fx32 b, fx32 c, fx32 d); void G2x_SetBlendBrightness_(u16 *ptr, fx32 a, fx32 brightness); void G2x_SetBlendBrightnessExt_(u16 *ptr, fx32 a, fx32 b, fx32 c, fx32 d, fx32 brightness); -void *G2x_ChangeBlendBrightness_(u16 *ptr, fx32 brightness); +void G2x_ChangeBlendBrightness_(u16 *ptr, fx32 brightness); //The g2 and g2_oam headers contain a lot of inline functions and enums that may want to be ported over at some point |