Skip to content

Commit

Permalink
.
Browse files Browse the repository at this point in the history
  • Loading branch information
HIllya51 committed Jan 15, 2025
1 parent 61902b1 commit 4a94c34
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions cpp/LunaHook/LunaHook/engine64/yuzu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2419,6 +2419,12 @@ namespace
s = std::regex_replace(s, std::wregex(LR"(%)"), L"");
buffer->from(s);
}
void F01005DE00CA34000(TextBuffer *buffer, HookParam *hp)
{
auto s = buffer->strW();
s = std::regex_replace(s, std::wregex(LR"(\$t(.*?)@)"), L"【$1】");
buffer->from(s);
}
void F0100BBA00B23E000(TextBuffer *buffer, HookParam *hp)
{
auto s = buffer->strW();
Expand Down Expand Up @@ -3649,6 +3655,8 @@ namespace
{0x8013b4cc, {CODEC_UTF16, 8, 2, 0, F0100BBA00B23E000, 0x0100BBA00B23E000ull, "1.0.2"}},
// ラッキードッグ1
{0x8016837C, {CODEC_UTF16, 8, 0, 0, 0, 0x0100813014B3A000ull, "1.0.0"}},
// オメガヴァンパイア
{0x800677AC, {CODEC_UTF16, 1, 0, 0, F01005DE00CA34000, 0x01005DE00CA34000ull, "1.0.0"}},
};
return 1;
}();
Expand Down
2 changes: 1 addition & 1 deletion cpp/version.cmake
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

set(VERSION_MAJOR 6)
set(VERSION_MINOR 20)
set(VERSION_PATCH 3)
set(VERSION_PATCH 4)
set(VERSION_REVISION 0)
set(LUNA_VERSION "{${VERSION_MAJOR},${VERSION_MINOR},${VERSION_PATCH},${VERSION_REVISION}}")
add_library(VERSION_DEF ${CMAKE_CURRENT_LIST_DIR}/version_def.cpp)
Expand Down

0 comments on commit 4a94c34

Please sign in to comment.