Skip to content
Snippets Groups Projects
Commit a044ea76 authored by toaster's avatar toaster
Browse files

I made skin loading 2/15ths faster on my machine by inverting this jump conditional

parent 80c14cd6
No related branches found
No related tags found
No related merge requests found
......@@ -261,7 +261,9 @@ boolean R_AddSingleSpriteDef(const char *sprname, spritedef_t *spritedef, UINT16
for (l = startlump; l < endlump; l++)
{
if (memcmp(lumpinfo[l].name,sprname,4)==0)
if (memcmp(lumpinfo[l].name,sprname,4))
continue;
{
INT32 width, height;
INT16 topoffset, leftoffset;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment