Skip to content

Commit

Permalink
fixed logger
Browse files Browse the repository at this point in the history
  • Loading branch information
W1lliam1337 committed Mar 27, 2024
1 parent 609947a commit 39e0da5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion memordial/src/core/segment/hooks/hooks.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ namespace dmpr::segment {
[[maybe_unused]] int a2,
[[maybe_unused]] void* a3,
[[maybe_unused]] int a4 ) {
utils::g_logger->info( "Patching memodrial icon..." );
static std::once_flag flag{ };
std::call_once( flag, [ = ] { utils::g_logger->info( "Patching memordial icon..." ); } );
return nullptr;
}

Expand Down
1 change: 1 addition & 0 deletions revive-engine.sln.DotSettings
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
<s:Boolean x:Key="/Default/UserDictionary/Words/=dmpr/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=memodrial/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=memordial/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=namelen/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=recv/@EntryIndexedValue">True</s:Boolean>
<s:Boolean x:Key="/Default/UserDictionary/Words/=sockfd/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>

0 comments on commit 39e0da5

Please sign in to comment.