TINYGL: Fixed missing semicolon

This commit is contained in:
Paweł Kołodziejski 2022-06-27 22:45:59 +02:00
parent ca89768161
commit d832c015ad
No known key found for this signature in database
GPG Key ID: 0BDADC9E74440FF7

View File

@ -106,7 +106,7 @@ void FrameBuffer::drawLine(const ZBufferPoint *p1, const ZBufferPoint *p2) {
if (kInterpZ) {
if (n == 0)
return
return;
sz = (p2->z - p1->z) / n;
z = p1->z;
}