Skip to content

Commit

Permalink
Revert "Fix crash"
Browse files Browse the repository at this point in the history
This reverts commit 7c65f86.
  • Loading branch information
TheNormalnij committed Sep 26, 2024
1 parent 7c65f86 commit bb3d4ee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Client/mods/deathmatch/logic/CResourceModelStreamer.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

#pragma once

#include <map>
#include <unordered_map>

class CResourceModelStreamer
{
Expand All @@ -26,5 +26,5 @@ class CResourceModelStreamer
void FullyReleaseModel(std::uint16_t modelId);

private:
std::map<std::uint16_t, std::uint16_t> m_requestedModels;
std::unordered_map<std::uint16_t, std::uint16_t> m_requestedModels;
};

0 comments on commit bb3d4ee

Please sign in to comment.