comparison src/dmtext_ttf.c @ 1102:e06abfde6c39

Cosmetics pass: Remove excess whitespace.
author Matti Hamalainen <ccr@tnsp.org>
date Tue, 03 Mar 2015 23:22:36 +0200
parents 1e5cf1144f36
children 3571d4670964
comparison
equal deleted inserted replaced
1101:0577f10dc3de 1102:e06abfde6c39
33 } 33 }
34 34
35 void dmDrawTTFText(SDL_Surface *screen, TTF_Font *font, SDL_Color col, int xc, int yc, const char *fmt, ...) 35 void dmDrawTTFText(SDL_Surface *screen, TTF_Font *font, SDL_Color col, int xc, int yc, const char *fmt, ...)
36 { 36 {
37 va_list ap; 37 va_list ap;
38 38
39 va_start(ap, fmt); 39 va_start(ap, fmt);
40 dmDrawTTFTextVA(screen, font, col, xc, yc, fmt, ap); 40 dmDrawTTFTextVA(screen, font, col, xc, yc, fmt, ap);
41 va_end(ap); 41 va_end(ap);
42 } 42 }