Skip to content

Commit

Permalink
Added release version to about dialog.
Browse files Browse the repository at this point in the history
  • Loading branch information
k4zmu2a committed Oct 16, 2021
1 parent 0d9610d commit 331f1dc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion SpaceCadetPinball/winmain.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -800,10 +800,11 @@ HDC winmain::_GetDC(HWND hWnd)
int winmain::a_dialog(HINSTANCE hInstance, HWND hWnd)
{
char appName[100];
char szOtherStuff[100];
char szOtherStuff[130];

lstrcpyA(appName, pinball::get_rc_string(38, 0));
lstrcpyA(szOtherStuff, pinball::get_rc_string(102, 0));
strcat_s(szOtherStuff, " Decompilation version 1.1.2");
auto icon = LoadIconA(hInstance, "ICON_1");
return ShellAboutA(hWnd, appName, szOtherStuff, icon);
}
Expand Down

0 comments on commit 331f1dc

Please sign in to comment.