Guest User

Untitled

a guest
Apr 20th, 2018
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.51 KB | None | 0 0
  1. Index: src/reader_lcf.cpp
  2. ===================================================================
  3. --- src/reader_lcf.cpp (revision 1538)
  4. +++ src/reader_lcf.cpp (working copy)
  5. @@ -253,7 +253,7 @@
  6. }
  7. fprintf(stderr, "Skipped Chunk %02X (%d byte) in %s at %X (%s)\n", chunk_info.ID, chunk_info.length, filename.c_str(), Tell(), srcfilename);
  8. for (uint32_t i = 0; i < chunk_info.length; ++i) {
  9. - uint32_t byte;
  10. + uint8_t byte;
  11. LcfReader::Read(byte);
  12. fprintf(stderr, "%02X ", byte);
  13. if ((i+1) % 16 == 0) {
Add Comment
Please, Sign In to add comment