mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-11 19:54:03 +00:00
TWINE: added original function name
This commit is contained in:
parent
02c9f13f8a
commit
29319ce443
@ -383,7 +383,7 @@ static FORCEINLINE int16 clamp(int16 x, int16 a, int16 b) {
|
||||
return x < a ? a : (x > b ? b : x);
|
||||
}
|
||||
|
||||
bool Renderer::computePolygons(int16 polyRenderType, const Vertex *vertices, int32 numVertices) {
|
||||
bool Renderer::computePolygons(int16 polyRenderType, const Vertex *vertices, int32 numVertices) { // ComputePolyMinMax
|
||||
uint8 vertexParam1 = vertices[numVertices - 1].colorIndex;
|
||||
int16 currentVertexX = vertices[numVertices - 1].x;
|
||||
int16 currentVertexY = vertices[numVertices - 1].y;
|
||||
|
Loading…
Reference in New Issue
Block a user