ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/Deliantra-Client/rendercache.c
(Generate patch)

Comparing deliantra/Deliantra-Client/rendercache.c (file contents):
Revision 1.4 by root, Sun Aug 12 08:44:22 2007 UTC vs.
Revision 1.5 by root, Sun Aug 12 08:49:51 2007 UTC

78static void 78static void
79rc_glyph (rc_array_t *arr, int u, int v, int w, int h, int x, int y) 79rc_glyph (rc_array_t *arr, int u, int v, int w, int h, int x, int y)
80{ 80{
81 U8 *c; 81 U8 *c;
82 STRLEN len = SvCUR (arr); 82 STRLEN len = SvCUR (arr);
83 SvGROW (arr, len + 2 * 2 + 1 * 4);
84 c = (U8 *)SvEND (arr);
83 85
84 SvGROW (arr, len + 2 * 2 + 1 * 4);
85
86 c = (U8 *)SvEND (arr);
87 *c++ = u; 86 *c++ = u;
88 *c++ = v; 87 *c++ = v;
89 *c++ = w; 88 *c++ = w;
90 *c++ = h; 89 *c++ = h;
91 90

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines