From 204e10795a8abb242f379c053a1684acf40d55b8 Mon Sep 17 00:00:00 2001 From: waltje Date: Tue, 28 Nov 2017 22:50:30 -0500 Subject: [PATCH] Fixes error message when running on system without DX (reported by foxlet.) --- src/win/win_ui.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/win/win_ui.c b/src/win/win_ui.c index 8a3e91c96..8b31d3a66 100644 --- a/src/win/win_ui.c +++ b/src/win/win_ui.c @@ -8,7 +8,7 @@ * * user Interface module for WinAPI on Windows. * - * Version: @(#)win_ui.c 1.0.4 2017/11/20 + * Version: @(#)win_ui.c 1.0.5 2017/11/28 * * Authors: Sarah Walker, * Miran Grca, @@ -715,7 +715,7 @@ ui_init(int nCmdShow) haccel = LoadAccelerators(hinstance, ACCEL_NAME); if (haccel == NULL) { MessageBox(hwndMain, - plat_get_string(IDS_2053), + plat_get_string(IDS_2153), plat_get_string(IDS_2050), MB_OK | MB_ICONERROR); return(3); @@ -728,7 +728,7 @@ ui_init(int nCmdShow) device.hwndTarget = hwnd; if (! RegisterRawInputDevices(&device, 1, sizeof(device))) { MessageBox(hwndMain, - plat_get_string(IDS_2054), + plat_get_string(IDS_2154), plat_get_string(IDS_2050), MB_OK | MB_ICONERROR); return(4);