summaryrefslogtreecommitdiff
path: root/src/extern/wog.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/extern/wog.c')
-rw-r--r--src/extern/wog.c3
1 files changed, 1 insertions, 2 deletions
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?