From 5f703e91b7621ef5e7293c8b96dba4cb772294c4 Mon Sep 17 00:00:00 2001 From: hendricks266 Date: Mon, 23 Jan 2017 11:21:01 +0000 Subject: [PATCH] SW: Fix typos in r5551. git-svn-id: https://svn.eduke32.com/eduke32@6040 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/source/sw/src/startwin.game.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/polymer/eduke32/source/sw/src/startwin.game.c b/polymer/eduke32/source/sw/src/startwin.game.c index 394b6f768..e80d5b4a2 100644 --- a/polymer/eduke32/source/sw/src/startwin.game.c +++ b/polymer/eduke32/source/sw/src/startwin.game.c @@ -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;