Add missing _sceGuUpdateStallAddr

This commit is contained in:
Francisco Javier Trujillo Mata
2025-06-11 19:19:10 +02:00
parent e3c184f781
commit afc560e82e
2 changed files with 2 additions and 0 deletions

View File

@@ -26,4 +26,5 @@ void sceGuDrawBezier(int vertex_type, int ucount, int vcount, const void *indice
} }
sendCommandi(BEZIER, (vcount << 8) | ucount); sendCommandi(BEZIER, (vcount << 8) | ucount);
_sceGuUpdateStallAddr();
} }

View File

@@ -26,4 +26,5 @@ void sceGuDrawSpline(int vertex_type, int ucount, int vcount, int uedge, int ved
} }
sendCommandi(SPLINE, (vedge << 18) | (uedge << 16) | (vcount << 8) | ucount); sendCommandi(SPLINE, (vedge << 18) | (uedge << 16) | (vcount << 8) | ucount);
_sceGuUpdateStallAddr();
} }