mirror of https://github.com/ClassiCube/ClassiCube
N64: Try to fix
This commit is contained in:
parent
182473618b
commit
61fc66f59f
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue