comparison gldragon.cpp @ 59:5a45c5c0a516

Typofix in error message.
author Matti Hamalainen <ccr@tnsp.org>
date Thu, 12 Dec 2019 17:51:33 +0200
parents 801d4c5c0f23
children f645e38e3157
comparison
equal deleted inserted replaced
58:801d4c5c0f23 59:5a45c5c0a516
378 378
379 if (bufLen > 0) 379 if (bufLen > 0)
380 { 380 {
381 char *buf = new char[bufLen]; 381 char *buf = new char[bufLen];
382 glGetShaderInfoLog(shader, bufLen, NULL, buf); 382 glGetShaderInfoLog(shader, bufLen, NULL, buf);
383 dmError("Shader compliation error:\n%s\n", 383 dmError("Shader compilation error:\n%s\n",
384 buf); 384 buf);
385 delete buf; 385 delete buf;
386 } 386 }
387 else 387 else
388 { 388 {