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

@@ -2798,7 +2798,7 @@ PLANTUML_INCLUDE_PATH =
# Minimum value: 0, maximum value: 10000, default value: 50.
# This tag requires that the tag HAVE_DOT is set to YES.
DOT_GRAPH_MAX_NODES = 25
DOT_GRAPH_MAX_NODES = 5
# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs
# generated by dot. A depth value of 3 means that only nodes reachable from the

View File

@@ -2,7 +2,7 @@
#include <vector>
#include "absl/status/status.h"
#include "app/core/constants.h"
#include "util/macro.h"
#include "app/rom.h"
#include "cli/z3ed.h"

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];