Skip to content

Commit 80ba3d1

Browse files
v0.46.1 - fix issue with endianess
1 parent 845a7e0 commit 80ba3d1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/EA_Image/ea_image_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ def _set_little_endianess():
141141
self.header_and_toc_size = struct.unpack(self.f_endianess + "L", in_file.read(4))[0]
142142

143143
# set endianess for directory
144-
if self.sign in ("SHPG", "ShpF", "ShpS", "ShpX"):
144+
if self.sign in ("SHPG", "ShpG", "ShpF", "ShpS", "ShpX"):
145145
self.f_dir_endianess = ">" # big
146146
else:
147147
self.f_dir_endianess = "<" # little

src/main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
from src.GUI.GUI_main import EAManGui
1717

18-
VERSION_NUM = "v0.46.0"
18+
VERSION_NUM = "v0.46.1"
1919

2020
logger = get_logger("main")
2121

0 commit comments

Comments
 (0)