From 61fc66f59f9bc01e151723f05286b28faae30f9e Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Mon, 28 Apr 2025 20:51:33 +1000 Subject: [PATCH] N64: Try to fix --- .github/workflows/build_n64.yml | 2 +- src/Graphics_GCWii.c | 2 -- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/.github/workflows/build_n64.yml b/.github/workflows/build_n64.yml index fe3cfedb9..c31f96447 100644 --- a/.github/workflows/build_n64.yml +++ b/.github/workflows/build_n64.yml @@ -15,7 +15,7 @@ jobs: build: runs-on: ubuntu-latest container: - image: ghcr.io/dragonminded/libdragon:latest + image: ghcr.io/dragonminded/libdragon:preview steps: - uses: actions/checkout@v4 - name: Compile N64 build diff --git a/src/Graphics_GCWii.c b/src/Graphics_GCWii.c index 600279ed4..ac05b489b 100644 --- a/src/Graphics_GCWii.c +++ b/src/Graphics_GCWii.c @@ -612,7 +612,6 @@ static void Draw_ColouredTriangles(int verticesCount, int startVertex) { GX_Position3f32(v->x, v->y, v->z); GX_Color1u32(v->Col); } - GX_End(); } static void Draw_TexturedTriangles(int verticesCount, int startVertex) { @@ -625,7 +624,6 @@ static void Draw_TexturedTriangles(int verticesCount, int startVertex) { GX_Color1u32(v->Col); GX_TexCoord2f32(v->U, v->V); } - GX_End(); } void Gfx_DrawVb_IndexedTris_Range(int verticesCount, int startVertex, DrawHints hints) {