Skip to content

Commit 7438171

Browse files
committed
Fix 'Release' and 'Profile' builds.
1 parent 3577bae commit 7438171

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

source/code/systems/asset_system/private/asset_shelve.cxx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ namespace ice
8585
ice::hashmap::set(
8686
_asset_resources,
8787
name_hash,
88-
_allocator.create<ice::AssetEntry>(name, this, ice::move(resource_data))
88+
_allocator.create<ice::AssetEntry>(ice::stringid(name), this, ice::move(resource_data))
8989
);
9090
}
9191

@@ -124,7 +124,7 @@ namespace ice
124124
ice::hashmap::set(
125125
_asset_resources,
126126
name_hash,
127-
_allocator.create<ice::AssetEntry>(name, this, ice::move(resource_data))
127+
_allocator.create<ice::AssetEntry>(ice::stringid(name), this, ice::move(resource_data))
128128
);
129129
}
130130

0 commit comments

Comments
 (0)