Skip to content

Commit

Permalink
5+2==7 :-)
Browse files Browse the repository at this point in the history
  • Loading branch information
lnussel committed Nov 1, 2005
1 parent 39f5333 commit f4dbf0d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions code/renderer/tr_image.c
Expand Up @@ -1154,11 +1154,11 @@ static void LoadTGA ( const char *name, byte **pic, int *width, int *height)

memcpy(&targa_header.colormap_index, &buf_p[3], 2);
memcpy(&targa_header.colormap_length, &buf_p[5], 2);
targa_header.colormap_size = buf_p[8];
memcpy(&targa_header.x_origin, &buf_p[9], 2);
memcpy(&targa_header.y_origin, &buf_p[11], 2);
memcpy(&targa_header.width, &buf_p[13], 2);
memcpy(&targa_header.height, &buf_p[15], 2);
targa_header.colormap_size = buf_p[7];
memcpy(&targa_header.x_origin, &buf_p[8], 2);
memcpy(&targa_header.y_origin, &buf_p[10], 2);
memcpy(&targa_header.width, &buf_p[12], 2);
memcpy(&targa_header.height, &buf_p[14], 2);
targa_header.pixel_size = buf_p[16];
targa_header.attributes = buf_p[17];

Expand Down

0 comments on commit f4dbf0d

Please sign in to comment.