Improved make_bitmap tool (#2615)

This commit is contained in:
Oleg Belousov 2025-04-10 07:21:19 +03:00 committed by GitHub
parent 288f6bd517
commit 319ed3e7b4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5234 additions and 5234 deletions

File diff suppressed because it is too large Load diff

View file

@ -98,7 +98,7 @@ f.write("/*\n"
"#include \"ui.hpp\"\n\n"
"namespace ui {\n\n")
for file in listdir(graphics_path):
for file in sorted(listdir(graphics_path)):
if file.endswith(".png") and path.isfile(graphics_path + file):
convert_png(graphics_path + file)
count += 1