Skip to content

Commit

Permalink
A few KensSharp -> KENSSharp corrections
Browse files Browse the repository at this point in the history
A little something for #2
  • Loading branch information
Clownacy committed Mar 19, 2018
1 parent 00643ae commit 5d5ebd8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
10 changes: 5 additions & 5 deletions KensSharp.iss → KENSSharp.iss
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,16 @@
; Do not use the same AppId value in installers for other applications.
; (To generate a new GUID, click Tools | Generate GUID inside the IDE.)
AppId={{C6E49E8A-37DE-4CC1-8BD2-74EC835513DA}
AppName=KensSharp
AppName=KENSSharp
AppVersion=1.2
;AppVerName=KensSharp 1.0
;AppVerName=KENSSharp 1.0
AppPublisher=Sonic Retro
AppPublisherURL=http://sonicretro.org/
AppSupportURL=http://sonicretro.org/
AppUpdatesURL=http://sonicretro.org/
DefaultDirName={pf}\KensSharp
AllowNoIcons=yes
OutputBaseFilename=KensSharpSetup
OutputBaseFilename=KENSSharpSetup
Compression=lzma
SolidCompression=yes
ArchitecturesInstallIn64BitMode=x64
Expand Down Expand Up @@ -64,5 +64,5 @@ Name: starticon; Description: "Create a &start menu icon"
Name: desktopicon; Description: "Create a &desktop icon"

[Icons]
Name: "{userprograms}\KensSharp Frontend"; Filename: "{app}\KensSharpFrontend.exe"; Tasks: starticon
Name: "{userdesktop}\KensSharp Frontend"; Filename: "{app}\KensSharpFrontend.exe"; Tasks: desktopicon
Name: "{userprograms}\KENSSharp Frontend"; Filename: "{app}\KensSharpFrontend.exe"; Tasks: starticon
Name: "{userdesktop}\KENSSharp Frontend"; Filename: "{app}\KensSharpFrontend.exe"; Tasks: desktopicon
2 changes: 1 addition & 1 deletion KensSharpShellExt/ContextMenu.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ IFACEMETHODIMP CContextMenu::QueryContextMenu(HMENU hMenu, UINT indexMenu, UINT
MENUITEMINFO mii = { sizeof(mii) };
mii.fMask = MIIM_STRING | MIIM_ID | MIIM_SUBMENU;
mii.wID = idCmdFirst + curid;
mii.dwTypeData = L"KensSharp";
mii.dwTypeData = L"KENSSharp";
mii.hSubMenu = ProcessSubMenu(rootmenu, idCmdFirst);
if (!InsertMenuItem(hMenu, indexMenu, TRUE, &mii))
{
Expand Down

0 comments on commit 5d5ebd8

Please sign in to comment.