mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 05:29:01 +00:00
iii icon fix
This commit is contained in:
parent
2ce946584e
commit
291cdd4bfb
1 changed files with 4 additions and 0 deletions
|
@ -1330,7 +1330,11 @@ InitApplication(HANDLE instance)
|
|||
windowClass.cbClsExtra = 0;
|
||||
windowClass.cbWndExtra = 0;
|
||||
windowClass.hInstance = (HINSTANCE)instance;
|
||||
#ifdef FIX_BUGS
|
||||
windowClass.hIcon = LoadIcon((HINSTANCE)instance, MAKEINTRESOURCE(IDI_MAIN_ICON));
|
||||
#else
|
||||
windowClass.hIcon = nil;
|
||||
#endif
|
||||
windowClass.hCursor = LoadCursor(nil, IDC_ARROW);
|
||||
windowClass.hbrBackground = nil;
|
||||
windowClass.lpszMenuName = NULL;
|
||||
|
|
Loading…
Reference in a new issue