mirror of
https://git.do.srb2.org/KartKrew/Kart-Public.git
synced 2024-12-28 05:11:34 +00:00
No Size_t --> int
in an I_Error print! [/rhyme]
This commit is contained in:
parent
76d108d760
commit
ae8b45965c
1 changed files with 1 additions and 1 deletions
|
@ -557,7 +557,7 @@ static pslope_t *P_NewVertexSlope(INT16 tag1, INT16 tag2, INT16 tag3, UINT8 flag
|
||||||
for (i = 0; i < 3; i++) {
|
for (i = 0; i < 3; i++) {
|
||||||
mt = ret->vertices[i];
|
mt = ret->vertices[i];
|
||||||
if (!mt) // If a vertex wasn't found, it's game over. There's nothing you can do to recover (except maybe try and kill the slope instead - TODO?)
|
if (!mt) // If a vertex wasn't found, it's game over. There's nothing you can do to recover (except maybe try and kill the slope instead - TODO?)
|
||||||
I_Error("Slope vertex %d (for linedef tag %d) not found.", i, tag1);
|
I_Error("Slope vertex %s (for linedef tag %d) not found.", sizeu1(i), tag1);
|
||||||
if (mt->extrainfo)
|
if (mt->extrainfo)
|
||||||
mt->z = mt->options;
|
mt->z = mt->options;
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue