Convert cursors and icon to PNG

No point using BMP, since they're way bigger, and they're not
required for authenticity, since the original files were .cur and
.ico files. At some point, I'd like to support those formats, so this
branch can use the original files.
This commit is contained in:
Clownacy 2020-09-25 13:48:10 +01:00
parent b7e25cd9be
commit 51e6cb5a6c
8 changed files with 6 additions and 6 deletions

View file

@ -199,8 +199,8 @@ set(RESOURCES
"BITMAP/Credit16.bmp" "BITMAP/Credit16.bmp"
"BITMAP/Credit17.bmp" "BITMAP/Credit17.bmp"
"BITMAP/Credit18.bmp" "BITMAP/Credit18.bmp"
"CURSOR/CURSOR_IKA.bmp" "CURSOR/CURSOR_IKA.png"
"CURSOR/CURSOR_NORMAL.bmp" "CURSOR/CURSOR_NORMAL.png"
"ORG/Access.org" "ORG/Access.org"
"ORG/Anzen.org" "ORG/Anzen.org"
"ORG/Balcony.org" "ORG/Balcony.org"
@ -442,7 +442,7 @@ endif()
# On Windows, we use native icons instead # On Windows, we use native icons instead
if(NOT WIN32) if(NOT WIN32)
list(APPEND RESOURCES "ICON/ICON_MINI.bmp") list(APPEND RESOURCES "ICON/ICON_MINI.png")
endif() endif()

Binary file not shown.

Before

Width:  |  Height:  |  Size: 654 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 225 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 258 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 131 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 231 B

View file

@ -80,16 +80,16 @@ static const unsigned char rpixel[] = {
}; };
static const unsigned char rCURSOR_IKA[] = { static const unsigned char rCURSOR_IKA[] = {
#include "Resource/CURSOR/CURSOR_IKA.bmp.h" #include "Resource/CURSOR/CURSOR_IKA.png.h"
}; };
static const unsigned char rCURSOR_NORMAL[] = { static const unsigned char rCURSOR_NORMAL[] = {
#include "Resource/CURSOR/CURSOR_NORMAL.bmp.h" #include "Resource/CURSOR/CURSOR_NORMAL.png.h"
}; };
#ifndef _WIN32 #ifndef _WIN32
static const unsigned char rICON_MINI[] = { static const unsigned char rICON_MINI[] = {
#include "Resource/ICON/ICON_MINI.bmp.h" #include "Resource/ICON/ICON_MINI.png.h"
}; };
#endif #endif