comparison src/video/SDL_blit.c @ 2260:202ddfd1cfb1

indent
author Sam Lantinga <slouken@libsdl.org>
date Fri, 17 Aug 2007 02:55:21 +0000
parents 340942cfda48
children bee005ace1bf
comparison
equal deleted inserted replaced
2259:1e690901ecd7 2260:202ddfd1cfb1
80 info.src = src->format; 80 info.src = src->format;
81 info.table = src->map->table; 81 info.table = src->map->table;
82 info.dst = dst->format; 82 info.dst = dst->format;
83 info.ckey = src->map->ckey; 83 info.ckey = src->map->ckey;
84 info.cmod = src->map->cmod; 84 info.cmod = src->map->cmod;
85 RunBlit = (SDL_loblit)src->map->data; 85 RunBlit = (SDL_loblit) src->map->data;
86 86
87 /* Run the actual software blit */ 87 /* Run the actual software blit */
88 RunBlit(&info); 88 RunBlit(&info);
89 } 89 }
90 90