mirror of
https://github.com/AppleCommander/AppleCommander.git
synced 2026-04-25 20:18:05 +00:00
Using the files address when dumping out data as hex.
This commit is contained in:
+1
-1
@@ -42,7 +42,7 @@ public class HexDumpFileFilter implements FileFilter {
|
||||
* @see com.webcodepro.applecommander.storage.FileFilter#filter(FileEntry)
|
||||
*/
|
||||
public byte[] filter(FileEntry fileEntry) {
|
||||
return AppleUtil.getHexDump(fileEntry.getFileData()).getBytes();
|
||||
return AppleUtil.getHexDump(fileEntry.getAddress(), fileEntry.getFileData()).getBytes();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user