shithub: cstory

Download patch

ref: b274c3af6a43a4c2571de2c997fb1cb53fa66240
parent: 78b41a5cedbb3e047c6876ec3757920b8567d3ee
author: Clownacy <Clownacy@users.noreply.github.com>
date: Thu Jan 23 07:29:22 EST 2020

Fix window icon in Windows builds

--- a/Makefile
+++ b/Makefile
@@ -185,7 +185,6 @@
   BITMAP/Credit18.bmp \
   CURSOR/CURSOR_IKA.bmp \
   CURSOR/CURSOR_NORMAL.bmp \
-  ICON/ICON_MINI.bmp \
   ORG/Access.org \
   ORG/Anzen.org \
   ORG/Balcony.org \
@@ -236,6 +235,10 @@
 else
   RESOURCES += BITMAP/pixel.bmp
   RESOURCES += FONT/LiberationMono.ttf
+endif
+
+ifneq ($(WINDOWS), 1)
+  RESOURCES += ICON/ICON_MINI.bmp
 endif
 
 ifeq ($(RENDERER), OpenGL3)
binary files /dev/null b/assets/resources/ICON/ICON_MINI.ico differ
--