summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorchai <chaifix@163.com>2020-07-10 23:12:27 +0800
committerchai <chaifix@163.com>2020-07-10 23:12:27 +0800
commit44e6647ab365a9261c904be839e356c06a545907 (patch)
tree88a2abfba33fdbd8bfe593ec4d15877c7248b7ef
parent21bd7a08615b388bc536d3ffb1e3efce7e5f7673 (diff)
*icon
-rw-r--r--Release/SoftShadeRoom.exebin130560 -> 130560 bytes
-rw-r--r--src/extern/wog.c3
2 files changed, 1 insertions, 2 deletions
diff --git a/Release/SoftShadeRoom.exe b/Release/SoftShadeRoom.exe
index 22f0d90..1799b0b 100644
--- a/Release/SoftShadeRoom.exe
+++ b/Release/SoftShadeRoom.exe
Binary files differ
diff --git a/src/extern/wog.c b/src/extern/wog.c
index 99a110a..eeb38e3 100644
--- a/src/extern/wog.c
+++ b/src/extern/wog.c
@@ -283,8 +283,7 @@ static int registerWindowClass()
windowClass.lpfnWndProc = (WNDPROC)(WindowProc); // WindowProc Handles Messages
windowClass.hInstance = GetModuleHandle(0); // Set The Instance
windowClass.hbrBackground = (HBRUSH)(COLOR_APPWORKSPACE); // Class Background Brush Color
- //windowClass.hCursor = LoadCursor(NULL, IDC_ARROW); // Load The Arrow Pointer
- //windowClass.hCursor = LoadImageA(NULL, "PanView.ico", IMAGE_ICON, 0, 0, LR_DEFAULTCOLOR | LR_CREATEDIBSECTION | LR_LOADFROMFILE);
+ windowClass.hCursor = LoadCursor(NULL, IDC_ARROW); // Load The Arrow Pointer
windowClass.lpszClassName = WINDOW_CLASS; // Sets The Applications Classname
if (RegisterClassEx(&windowClass) == 0) // Did Registering The Class Fail?