SW: Fix typos in r5551.

git-svn-id: https://svn.eduke32.com/eduke32@6040 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
hendricks266 2017-01-23 11:21:01 +00:00
parent 0b692792a0
commit 5f703e91b7

View file

@ -355,11 +355,11 @@ static INT_PTR CALLBACK startup_dlgproc(HWND hwndDlg, UINT uMsg, WPARAM wParam,
ZeroMemory(&tab, sizeof(tab));
tab.mask = TCIF_TEXT;
static char textConfiguration[] = TEXT("Configuration")
static char textConfiguration[] = TEXT("Configuration");
tab.pszText = textConfiguration;
SendMessage(hwnd, TCM_INSERTITEM, (WPARAM)TAB_CONFIG, (LPARAM)&tab);
tab.mask = TCIF_TEXT;
static char textGame[] = TEXT("Game")
static char textGame[] = TEXT("Game");
tab.pszText = textGame;
SendMessage(hwnd, TCM_INSERTITEM, (WPARAM)TAB_GAME, (LPARAM)&tab);
tab.mask = TCIF_TEXT;