3 Commits

Author SHA1 Message Date
neru 8830d1abdb Merge branch 'main' of https://git.neru.rip/neru/HexUnlocked
Build / build (push) Failing after 23m50s
2026-06-20 11:46:43 -03:00
neru 71fe1c6549 fix: icon missing from tray 2026-06-20 10:57:10 -03:00
neru e70323c86b docs: add icon to readme
Build / build (push) Has been cancelled
2026-06-20 09:21:48 -03:00
2 changed files with 3 additions and 1 deletions
+2
View File
@@ -1,4 +1,6 @@
<h1 align="center">
<img src="img/favicon.ico" height="64">
<br/>
<b>Hex: Unlocked</b>
</h1>
+1 -1
View File
@@ -84,7 +84,7 @@ bool TrayIcon::init()
nid.uFlags = NIF_ICON | NIF_MESSAGE | NIF_TIP;
nid.uCallbackMessage = WM_TRAYICON;
nid.hIcon = LoadIcon(NULL, IDI_APPLICATION);
nid.hIcon = LoadIconA(GetModuleHandle(NULL), "IDI_ICON1");
strncpy_s(nid.szTip, "HexUnlocked", sizeof(nid.szTip) - 1);
nid.szTip[sizeof(nid.szTip) - 1] = '\0';