diff --git a/compcount.lua b/compcount.lua index 000a0a9..027dfea 100644 --- a/compcount.lua +++ b/compcount.lua @@ -198,8 +198,24 @@ end local function getFallbackIcon() if fallbackIcon == false then - local ok, image = pcall(paintutils.loadImage, "/icons16/diamond16.nfp") - fallbackIcon = ok and image or nil + fallbackIcon = parseNfpImage(table.concat({ + "0000000000000000", + "000000eeee000000", + "00000eeeeee00000", + "0000eee00eee0000", + "00000e00000ee000", + "0000000000eee000", + "000000000eee0000", + "00000000eee00000", + "00000000ee000000", + "0000000000000000", + "00000000ee000000", + "00000000ee000000", + "0000000000000000", + "0000000000000000", + "0000000000000000", + "0000000000000000", + }, "\n")) end return fallbackIcon