mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
GE Debugger: Fix type conversion warning.
This commit is contained in:
parent
6cba46bd62
commit
184ae2f93c
1 changed files with 2 additions and 2 deletions
|
@ -204,7 +204,7 @@ static void ExpandBezier(int &count, int op, const std::vector<SimpleVertex> &si
|
|||
cpoints.col = (Vec4f *)AllocateAlignedMemory(sizeof(Vec4f) * num_points, 16);
|
||||
cpoints.Convert(points.data(), num_points);
|
||||
|
||||
surface.Init(generatedVerts.size());
|
||||
surface.Init((int)generatedVerts.size());
|
||||
SoftwareTessellation(output, surface, gstate.vertType, cpoints);
|
||||
count = output.count;
|
||||
|
||||
|
@ -256,7 +256,7 @@ static void ExpandSpline(int &count, int op, const std::vector<SimpleVertex> &si
|
|||
cpoints.col = (Vec4f *)AllocateAlignedMemory(sizeof(Vec4f) * num_points, 16);
|
||||
cpoints.Convert(points.data(), num_points);
|
||||
|
||||
surface.Init(generatedVerts.size());
|
||||
surface.Init((int)generatedVerts.size());
|
||||
SoftwareTessellation(output, surface, gstate.vertType, cpoints);
|
||||
count = output.count;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue