Skip to content

Commit

Permalink
archive: Display 'Extracting' instead of 'Copying'
Browse files Browse the repository at this point in the history
  • Loading branch information
Joel16 committed Sep 6, 2020
1 parent cbb3f6a commit 8da8375
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/popups/archive.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ namespace ArchiveHelper {

offset += bytes_read;
std::memset(buf, 0, buf_size);
Popups::ProgressPopup(static_cast<float>(offset), static_cast<float>(entry.st_size), "Copying:", filename.c_str());
Popups::ProgressPopup(static_cast<float>(offset), static_cast<float>(entry.st_size), "Extracting:", filename.c_str());
}

delete[] buf;
Expand Down

0 comments on commit 8da8375

Please sign in to comment.