Skip to content

Commit

Permalink
change command line param to gopher
Browse files Browse the repository at this point in the history
  • Loading branch information
czyt committed Nov 26, 2022
1 parent 87136cc commit c50e7e0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/portable.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ std::wstring GetCommand(LPWSTR param)
// 追加参数
if (i == insert_pos)
{
args.push_back(L"--shuax");
args.push_back(L"--gopher");

// args.push_back(L"--force-local-ntp");
// args.push_back(L"--disable-background-networking");
Expand Down
4 changes: 2 additions & 2 deletions src/vivaldi++.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ void VivaldiPlus()

void VivaldiPlusCommand(LPWSTR param)
{
if (!wcsstr(param, L"--shuax"))
if (!wcsstr(param, L"--gopher"))
{
Portable(param);
}
Expand Down Expand Up @@ -86,7 +86,7 @@ void InstallLoader()
#define EXTERNC extern "C"

//
EXTERNC __declspec(dllexport) void shuax()
EXTERNC __declspec(dllexport) void gopher()
{
}

Expand Down

0 comments on commit c50e7e0

Please sign in to comment.