Skip to content

Commit

Permalink
Core: Fix a typo in the GND decoder
Browse files Browse the repository at this point in the history
  • Loading branch information
rdw-software committed Aug 13, 2023
1 parent a43d63b commit 343cf98
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Core/FileFormats/RagnarokGND.lua
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ function RagnarokGND:DecodeHeader()

self.signature = ffi_string(header.signature, headerSize)
if self.signature ~= "GRGN" then
error("Failed to decode GND header (Signature " .. self.signature .. ' should be "GRGN"', 0)
error("Failed to decode GND header (Signature " .. self.signature .. ' should be "GRGN")', 0)
end

self.version = header.version_major + header.version_minor / 10
Expand Down

0 comments on commit 343cf98

Please sign in to comment.