Skip to content

Commit

Permalink
Change: Allow stripping 8bpp normal zoom with grfstrip.
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterN authored and rubidium42 committed May 3, 2024
1 parent ad7bd91 commit f6aa952
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/grfstrip.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ int main(int argc, char **argv)
"\n"
"Usage:\n"
" GRFSTRIP <origin> <dest> (<depth> <zoom>)*\n"
" Strip real sprites that are not in the set \"normal 8bpp and the ones\n"
" Strip real sprites that are not in the set \"the ones\n"
" specified at the command line\" from origin into dest.\n"
" Known depths: ");
for (int j = 0; j < num_depths; j++) {
Expand All @@ -200,7 +200,7 @@ int main(int argc, char **argv)
return 0;
}

uint32_t allowed = 1;
uint32_t allowed = 0;
for (int i = 3; i + 1 < argc; ) {
int depth_offset = 0xFF;
for (int j = 0; j < num_depths; j++) {
Expand Down

0 comments on commit f6aa952

Please sign in to comment.