Skip to content
This repository has been archived by the owner on Nov 18, 2023. It is now read-only.

Commit

Permalink
ビルド番号の表記を修正
Browse files Browse the repository at this point in the history
  • Loading branch information
creeper-0910 committed May 25, 2022
1 parent 9ebbf47 commit 2df29b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ExplorerPatcher/GUI.c
Original file line number Diff line number Diff line change
Expand Up @@ -1248,7 +1248,7 @@ static BOOL GUI_Build(HDC hDC, HWND hwnd, POINT pt)
p = strstr(line, "%OSVERSIONSTRING%");
if (p)
{
sprintf_s(p, MAX_PATH, "%d.%d.%d.%d.", global_rovi.dwMajorVersion, global_rovi.dwMinorVersion, global_rovi.dwBuildNumber, global_ubr);
sprintf_s(p, MAX_PATH, "%d.%d.%d.%d", global_rovi.dwMajorVersion, global_rovi.dwMinorVersion, global_rovi.dwBuildNumber, global_ubr);
}
}
ZeroMemory(text, (MAX_LINE_LENGTH + 3) * sizeof(wchar_t));
Expand Down
3 changes: 2 additions & 1 deletion ExplorerPatcher/settings.reg
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,8 @@
;e
;e このプロジェクトは、Windows上での作業環境を改善することを目的としています。
;e Valentin-Gabriel Raduによって設計されました。
;t Windows11で動作しており、OSビルドは %OSVERSIONSTRING% です。
;e 動作環境: Windows11
;t OSビルド: %OSVERSIONSTRING%
;y プロジェクトのGithub (https://github.com/valinet) 🡕
;https://github.com/valinet
;q
Expand Down

0 comments on commit 2df29b9

Please sign in to comment.