Browse Source

Use APP_ICON instead of 101 for icon reference.

woollybah 6 years ago
parent
commit
c36299de6f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      blitz.mod/blitz_app.c

+ 1 - 1
blitz.mod/blitz_app.c

@@ -142,7 +142,7 @@ void bbGetAppFileDir(wchar_t * buf) {
 }
 
 HICON bbAppIcon(HINSTANCE hInstance) {
-	return LoadIcon(hInstance, MAKEINTRESOURCE (101));
+	return LoadIcon(hInstance, "APP_ICON");
 }
 
 #elif __linux