diff --git a/src/ca65/lineinfo.c b/src/ca65/lineinfo.c index 7e9edc60c..f4867fff2 100644 --- a/src/ca65/lineinfo.c +++ b/src/ca65/lineinfo.c @@ -128,7 +128,7 @@ static unsigned HT_GenHash (const void* Key) const LineInfoKey* K = Key; /* Hash over a combination of type, file and line */ - return HashInt ((K->Type << 18) ^ (K->Pos.Name << 14) ^ K->Pos.Line); + return HashInt ((K->Type << 21) ^ (K->Pos.Name << 14) ^ K->Pos.Line); }