Skip to content

Commit

Permalink
Fix a bug which caused UPS patch creation to create incorrect patches
Browse files Browse the repository at this point in the history
  • Loading branch information
ravikanodia committed Apr 3, 2017
1 parent eded13a commit 5559b11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libups/libups.cpp
Expand Up @@ -42,7 +42,7 @@ bool UPS::create(const char *x, const char *y, const char *z) {
}

x = i < sizex ? xread() : 0x00;
y = y < sizey ? yread() : 0x00;
y = i < sizey ? yread() : 0x00;
i++;
zwrite(x ^ y);
if(x == y) break;
Expand Down

0 comments on commit 5559b11

Please sign in to comment.