Update Doxyfile and refactor includes in tile16_transfer and main.mm

This commit is contained in:
scawful
2025-01-19 20:23:02 -05:00
parent 809282edad
commit c38108b551
4 changed files with 4 additions and 4 deletions

View File

@@ -348,7 +348,7 @@
auto data = [NSData dataWithContentsOfURL:selectedFileURL];
// Cast NSData* to uint8_t*
uchar *bytes = (uchar *)[data bytes];
uint8_t *bytes = (uint8_t *)[data bytes];
// Size of the data
size_t size = [data length];