summaryrefslogtreecommitdiff
path: root/src/engine/fox_std_lib.c
diff options
context:
space:
mode:
authorKiritoDv <kiritodev01@gmail.com>2024-05-22 23:40:48 -0600
committerSonic Dreamcaster <alejandro.asenjo88@gmail.com>2024-09-17 20:22:18 -0300
commit3ca7b499aee34d41aaecc8b902bcd6b131d1a93c (patch)
tree54856b724f6dfd6bc16ee7c9fef23d9ee08fff2c /src/engine/fox_std_lib.c
parentc01884f0c47c9939375f3abe2b185c6d0958192d (diff)
Fixed wrong types
Diffstat (limited to 'src/engine/fox_std_lib.c')
-rw-r--r--src/engine/fox_std_lib.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/engine/fox_std_lib.c b/src/engine/fox_std_lib.c
index b10289b8..dac86d0d 100644
--- a/src/engine/fox_std_lib.c
+++ b/src/engine/fox_std_lib.c
@@ -599,11 +599,7 @@ void Lib_TextureRect_CI8(Gfx** gfxPtr, u8* texture, u16* palette, u32 width, u32
(s32) (1.0f / yScale * 1024.0f));
}
-<<<<<<< HEAD
void Lib_TextureRect_RGBA16(Gfx** gfxPtr, void* texture, u32 width, u32 height, f32 xPos, f32 yPos, f32 xScale,
-=======
-void TextureRect_RGBA16(Gfx** gfxPtr, void* texture, u32 width, u32 height, f32 xPos, f32 yPos, f32 xScale,
->>>>>>> edd7dba2 (Fixed all remaining compilation issues)
f32 yScale) {
gDPSetTileCustom((*gfxPtr)++, G_IM_FMT_RGBA, G_IM_SIZ_16b, width, height, 0, G_TX_NOMIRROR | G_TX_CLAMP,
G_TX_NOMIRROR | G_TX_CLAMP, G_TX_NOMASK, G_TX_NOMASK, G_TX_NOLOD, G_TX_NOLOD);
@@ -617,11 +613,7 @@ void TextureRect_RGBA16(Gfx** gfxPtr, void* texture, u32 width, u32 height, f32
(s32) (1.0f / yScale * 1024.0f));
}
-<<<<<<< HEAD
void Lib_TextureRect_RGBA16_MirX(Gfx** gfxPtr, void* texture, u32 width, u32 height, f32 xPos, f32 yPos, f32 xScale,
-=======
-void TextureRect_RGBA16_MirX(Gfx** gfxPtr, void* texture, u32 width, u32 height, f32 xPos, f32 yPos, f32 xScale,
->>>>>>> edd7dba2 (Fixed all remaining compilation issues)
f32 yScale) {
gDPSetTileCustom((*gfxPtr)++, G_IM_FMT_RGBA, G_IM_SIZ_16b, width, height, 0, G_TX_NOMIRROR | G_TX_CLAMP,
G_TX_NOMIRROR | G_TX_CLAMP, G_TX_NOMASK, G_TX_NOMASK, G_TX_NOLOD, G_TX_NOLOD);
@@ -635,11 +627,7 @@ void TextureRect_RGBA16_MirX(Gfx** gfxPtr, void* texture, u32 width, u32 height,
(u16) (s32) (-1.0f / xScale * 1024.0f), (s32) (1.0f / yScale * 1024.0f));
}
-<<<<<<< HEAD
void Lib_TextureRect_IA8(Gfx** gfxPtr, void* texture, u32 width, u32 height, f32 xPos, f32 yPos, f32 xScale, f32 yScale) {
-=======
-void TextureRect_IA8(Gfx** gfxPtr, void* texture, u32 width, u32 height, f32 xPos, f32 yPos, f32 xScale, f32 yScale) {
->>>>>>> edd7dba2 (Fixed all remaining compilation issues)
gDPSetTileCustom((*gfxPtr)++, G_IM_FMT_IA, G_IM_SIZ_8b, width, height, 0, G_TX_NOMIRROR | G_TX_CLAMP,
G_TX_NOMIRROR | G_TX_CLAMP, G_TX_NOMASK, G_TX_NOMASK, G_TX_NOLOD, G_TX_NOLOD);