362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
|
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
|
-
+
-
+
|
if (dblend < 0)
dblend = 0;
}
glEnable(GL_TEXTURE_2D);
@autoreleasepool {
char *command = getcurcommand();
OFString *command = getcurcommand();
char *player = playerincrosshair();
if (command)
draw_textf(@"> %s_", 20, 1570, 2, command);
draw_textf(@"> %@_", 20, 1570, 2, command);
else if (closeent[0])
draw_text(@(closeent), 20, 1570, 2);
else if (player)
draw_text(@(player), 20, 1570, 2);
}
renderscores();
|