Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
danielkrupinski committed May 20, 2024
1 parent 19ed696 commit b29f1ac
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Source/GlobalContext/PartialGlobalContext.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
struct PartialGlobalContext {
explicit PartialGlobalContext(DynamicLibrary clientDLL, DynamicLibrary panoramaDLL, SdlDll sdlDLL) noexcept
: patternFinders{
.clientPatternFinder{clientDLL.getCodeSection().raw()},
.tier0PatternFinder{DynamicLibrary{cs2::TIER0_DLL}.getCodeSection().raw()},
.soundSystemPatternFinder{DynamicLibrary{cs2::SOUNDSYSTEM_DLL}.getCodeSection().raw()},
.fileSystemPatternFinder{DynamicLibrary{cs2::FILESYSTEM_DLL}.getCodeSection().raw()},
.panoramaPatternFinder{panoramaDLL.getCodeSection().raw()},
.sdlPatternFinder{sdlDLL.getCodeSection().raw()}}
PatternFinder<PatternNotFoundLogger>{clientDLL.getCodeSection().raw()},
PatternFinder<PatternNotFoundLogger>{DynamicLibrary{cs2::TIER0_DLL}.getCodeSection().raw()},
PatternFinder<PatternNotFoundLogger>{DynamicLibrary{cs2::SOUNDSYSTEM_DLL}.getCodeSection().raw()},
PatternFinder<PatternNotFoundLogger>{DynamicLibrary{cs2::FILESYSTEM_DLL}.getCodeSection().raw()},
PatternFinder<PatternNotFoundLogger>{panoramaDLL.getCodeSection().raw()},
PatternFinder<PatternNotFoundLogger>{sdlDLL.getCodeSection().raw()}}
, clientDLL{clientDLL}
, panoramaDLL{panoramaDLL}
, peepEventsHook{MemoryPatterns{patternFinders}.sdlPatterns().peepEventsPointer(sdlDLL.peepEvents())}
Expand Down

0 comments on commit b29f1ac

Please sign in to comment.