Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CRCAdapter: use proper crc for SR #54

Merged
merged 1 commit into from
Aug 5, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions src/mercury_engine_data_structures/formats/property_enum.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

import construct

from mercury_engine_data_structures import crc, dread_data, samus_returns_data
from mercury_engine_data_structures import dread_data, samus_returns_data
from mercury_engine_data_structures.game_check import Game, is_sr_or_else


Expand Down Expand Up @@ -77,7 +77,8 @@
if isinstance(obj, int):
return obj
else:
return crc.crc64(obj)
game: Game = context._params.target_game
return game.hash_asset(obj)

Check warning on line 81 in src/mercury_engine_data_structures/formats/property_enum.py

View check run for this annotation

Codecov / codecov/patch

src/mercury_engine_data_structures/formats/property_enum.py#L80-L81

Added lines #L80 - L81 were not covered by tests

raise construct.MappingError(
"building failed, " + msg,
Expand Down