From edf23387b000a707390d0f915f956d2c1c0d73e1 Mon Sep 17 00:00:00 2001 From: Nishi Date: Tue, 8 Oct 2024 09:11:37 +0000 Subject: [PATCH] update resource git-svn-id: file:///raid/svn-personal/reisen/trunk@15 c77b849d-6a5c-934c-a956-7b968ca1e197 --- SFX/main.c | 4 ++-- SFX/sfx.rc | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/SFX/main.c b/SFX/main.c index bfb9fe8..2b88843 100644 --- a/SFX/main.c +++ b/SFX/main.c @@ -414,12 +414,12 @@ BOOL InitApp(void) { wc.cbClsExtra = 0; wc.cbWndExtra = 0; wc.hInstance = hInst; - wc.hIcon = NULL; + wc.hIcon = LoadIcon(hInst, "REISEN"); wc.hCursor = LoadCursor(NULL, IDC_ARROW); wc.hbrBackground = GetStockObject(WHITE_BRUSH); wc.lpszMenuName = NULL; wc.lpszClassName = "reisensfx"; - wc.hIconSm = NULL; + wc.hIconSm = LoadIcon(hInst, "REISEN"); return RegisterClassEx(&wc); } diff --git a/SFX/sfx.rc b/SFX/sfx.rc index bbd9086..25e55fa 100644 --- a/SFX/sfx.rc +++ b/SFX/sfx.rc @@ -1,4 +1,4 @@ /* $Id$ */ INSTALLER BITMAP "../Binary/install.bmp" -TEWI ICON "../Binary/reisen.ico" +REISEN ICON "../Binary/reisen.ico" -- 2.45.2