Skip to content

Commit

Permalink
Add anisotropicFiltering, vSyncCount option
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimjio committed Dec 14, 2023
1 parent 869411c commit 4f9cf0b
Show file tree
Hide file tree
Showing 8 changed files with 340 additions and 167 deletions.
4 changes: 3 additions & 1 deletion premake5.lua
Original file line number Diff line number Diff line change
Expand Up @@ -46,13 +46,14 @@ workspace "umamusume-localify"
}

toolset "clang"
buildoptions "/std:c++latest"
systemversion "latest"
symbols "On"
staticruntime "On"
editandcontinue "Off"
warnings "Off"
characterset "ASCII"
cppdialect "C++20"
cdialect "C17"

flags {
"NoIncrementalLink",
Expand Down Expand Up @@ -90,6 +91,7 @@ workspace "umamusume-localify"
links {
"Shlwapi",
"WinHttp",
"ntdll",
"./deps/discord_game_sdk/discord_game_sdk.dll.lib"
}

Expand Down
12 changes: 6 additions & 6 deletions src/VERSIONINFO.rc
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
//

VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,30,0,0
PRODUCTVERSION 1,30,0,0
FILEVERSION 1,30,1,0
PRODUCTVERSION 1,30,1,0
FILEFLAGSMASK 0x3fL
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -25,19 +25,19 @@ BEGIN
BEGIN
VALUE "LegalCopyright", "Copyright © Ji O Kim\0"
VALUE "FileDescription", "우마무스메 현지화 패치\0"
VALUE "FileVersion", "1.30.0.0\0"
VALUE "FileVersion", "1.30.1.0\0"
VALUE "InternalName", "umamusume-localify\0"
VALUE "ProductName", "Umamusume Localify\0"
VALUE "ProductVersion", "1.30.0\0"
VALUE "ProductVersion", "1.30.1\0"
END
BLOCK "000004b0"
BEGIN
VALUE "LegalCopyright", "Copyright © Ji O Kim\0"
VALUE "FileDescription", "Localization patch for Umamusume\0"
VALUE "FileVersion", "1.30.0.0\0"
VALUE "FileVersion", "1.30.1.0\0"
VALUE "InternalName", "umamusume-localify\0"
VALUE "ProductName", "Umamusume Localify\0"
VALUE "ProductVersion", "1.30.0\0"
VALUE "ProductVersion", "1.30.1\0"
END
END
BLOCK "VarFileInfo"
Expand Down
Loading

0 comments on commit 4f9cf0b

Please sign in to comment.