Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimjio committed May 12, 2024
1 parent 3976f34 commit d867f51
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions src/VERSIONINFO.rc
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,33,0,0
PRODUCTVERSION 1,33,0,0
FILEVERSION 1,33,1,0
PRODUCTVERSION 1,33,1,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -30,20 +30,20 @@ BEGIN
BLOCK "000004b0"
BEGIN
VALUE "FileDescription", "Localization patch for Umamusume"
VALUE "FileVersion", "1.33.0.0"
VALUE "FileVersion", "1.33.1.0"
VALUE "InternalName", "umamusume-localify"
VALUE "LegalCopyright", "Copyright ⓒ Ji O Kim"
VALUE "ProductName", "Umamusume Localify"
VALUE "ProductVersion", "1.33.0.0"
VALUE "ProductVersion", "1.33.1.0"
END
BLOCK "041204b0"
BEGIN
VALUE "FileDescription", "우마무스메 현지화 패치"
VALUE "FileVersion", "1.33.0.0"
VALUE "FileVersion", "1.33.1.0"
VALUE "InternalName", "umamusume-localify"
VALUE "LegalCopyright", "Copyright ⓒ Ji O Kim"
VALUE "ProductName", "Umamusume Localify"
VALUE "ProductVersion", "1.33.0.0"
VALUE "ProductVersion", "1.33.1.0"
END
END
BLOCK "VarFileInfo"
Expand Down
6 changes: 3 additions & 3 deletions src/hook.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1140,7 +1140,7 @@ namespace
MH_EnableHook(criAtomExPlayer_Pause_addr);
}

if (!g_replace_assetbundle_file_paths.empty())
if (!g_replace_assets.empty())
{
auto CriMana_SetFileNew_addr = GetProcAddress(criware, "CRIWARE8778888A");

Expand Down Expand Up @@ -11835,8 +11835,6 @@ namespace
}
#pragma endregion

ADD_HOOK(AssetBundleRequest_GetResult, "UnityEngine.AssetBundleRequest::GetResult at %p\n");

ADD_HOOK(assetbundle_LoadFromFile, "UnityEngine.AssetBundle::LoadFromFile at %p\n");

ADD_HOOK(assetbundle_unload, "UnityEngine.AssetBundle::Unload at %p\n");
Expand All @@ -11845,6 +11843,8 @@ namespace

if (!replaceAssets.empty())
{
ADD_HOOK(AssetBundleRequest_GetResult, "UnityEngine.AssetBundleRequest::GetResult at %p\n");

ADD_HOOK(assetbundle_load_asset, "UnityEngine.AssetBundle::LoadAsset at %p\n");

ADD_HOOK(assetbundle_load_asset_async, "UnityEngine.AssetBundle::LoadAssetAsync at %p\n");
Expand Down
6 changes: 3 additions & 3 deletions src/settings_text.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,17 @@ namespace LocalifySettings

if (id == "character_system_text_caption_font_color")
{
return isKor ? "폰트 색상" : "";
return isKor ? "폰트 색상" : "フォントの色";
}

if (id == "character_system_text_caption_outline_size")
{
return isKor ? "외곽선 크기" : "";
return isKor ? "외곽선 크기" : "アウトラインサイズ";
}

if (id == "character_system_text_caption_outline_color")
{
return isKor ? "외곽선 색상" : "";
return isKor ? "외곽선 색상" : "アウトラインの色";
}

if (id == "show_caption")
Expand Down

0 comments on commit d867f51

Please sign in to comment.