summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSonic Dreamcaster <alejandro.asenjo88@gmail.com>2026-01-06 05:07:48 -0300
committerSonic Dreamcaster <alejandro.asenjo88@gmail.com>2026-01-06 05:07:48 -0300
commit510779550138782c39b5c8086073b2638b3a0536 (patch)
tree6bde03bf694e8226bbbf8777402106512fcc6427
parenta6429d729b4ffb7939ac73fd9c8f6c46e4760131 (diff)
fix seams in backgrounds
-rw-r--r--src/engine/fox_bg.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/engine/fox_bg.c b/src/engine/fox_bg.c
index 9c3c60c8..9cdb5f07 100644
--- a/src/engine/fox_bg.c
+++ b/src/engine/fox_bg.c
@@ -576,7 +576,7 @@ void Background_DrawBackdrop(void) {
}
// Translate to the next position (move right by 7280.0f each time)
- Matrix_Translate(gGfxMatrix, 7280.0f, 0.0f, 0.0f, MTXF_APPLY);
+ Matrix_Translate(gGfxMatrix, 7279.0f, 0.0f, 0.0f, MTXF_APPLY);
Matrix_SetGfxMtx(&gMasterDisp);
if (skipInterpolation) {
@@ -640,7 +640,7 @@ void Background_DrawBackdrop(void) {
}
// Translate to the next position (move right by 7280.0f each time)
- Matrix_Translate(gGfxMatrix, 7280.0f, 0.0f, 0.0f, MTXF_APPLY);
+ Matrix_Translate(gGfxMatrix, 7279.0f, 0.0f, 0.0f, MTXF_APPLY);
Matrix_SetGfxMtx(&gMasterDisp);
if (skipInterpolation) {
@@ -779,7 +779,7 @@ void Background_DrawBackdrop(void) {
}
// Translate to the next position (move right by 7280.0f each time)
- Matrix_Translate(gGfxMatrix, 7280.0f, 0.0f, 0.0f, MTXF_APPLY);
+ Matrix_Translate(gGfxMatrix, 7279.0f, 0.0f, 0.0f, MTXF_APPLY);
Matrix_SetGfxMtx(&gMasterDisp);
FrameInterpolation_RecordCloseChild();
@@ -853,7 +853,7 @@ void Background_DrawBackdrop(void) {
}
// Move the matrix to the right by 7280.0f each time to draw the next texture
- Matrix_Translate(gGfxMatrix, 7280.0f, 0.0f, 0.0f, MTXF_APPLY);
+ Matrix_Translate(gGfxMatrix, 7279.0f, 0.0f, 0.0f, MTXF_APPLY);
Matrix_SetGfxMtx(&gMasterDisp);