Skip to content

Commit

Permalink
:/
Browse files Browse the repository at this point in the history
  • Loading branch information
aboood40091 committed Sep 29, 2016
1 parent 6fa6318 commit 821f028
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions gtx_extract.py
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,9 @@ def readGFD(f):

pos += header.size

blockB = False
blockC = False

while pos < len(f): # Loop through the entire file, stop if reached the end of the file.
block = GFDBlockHeader()
block.data(f, pos)
Expand All @@ -133,9 +136,6 @@ def readGFD(f):

pos += block.size

blockB = False
blockC = False

if block.type_ == 0x0B:
blockB = True

Expand Down

0 comments on commit 821f028

Please sign in to comment.