Update Doxyfile and refactor includes in tile16_transfer and main.mm
This commit is contained in:
2
Doxyfile
2
Doxyfile
@@ -2798,7 +2798,7 @@ PLANTUML_INCLUDE_PATH =
|
|||||||
# Minimum value: 0, maximum value: 10000, default value: 50.
|
# Minimum value: 0, maximum value: 10000, default value: 50.
|
||||||
# This tag requires that the tag HAVE_DOT is set to YES.
|
# 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
|
# 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
|
# generated by dot. A depth value of 3 means that only nodes reachable from the
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
#include <vector>
|
#include <vector>
|
||||||
|
|
||||||
#include "absl/status/status.h"
|
#include "absl/status/status.h"
|
||||||
#include "app/core/constants.h"
|
#include "util/macro.h"
|
||||||
#include "app/rom.h"
|
#include "app/rom.h"
|
||||||
#include "cli/z3ed.h"
|
#include "cli/z3ed.h"
|
||||||
|
|
||||||
|
|||||||
@@ -348,7 +348,7 @@
|
|||||||
|
|
||||||
auto data = [NSData dataWithContentsOfURL:selectedFileURL];
|
auto data = [NSData dataWithContentsOfURL:selectedFileURL];
|
||||||
// Cast NSData* to uint8_t*
|
// Cast NSData* to uint8_t*
|
||||||
uchar *bytes = (uchar *)[data bytes];
|
uint8_t *bytes = (uint8_t *)[data bytes];
|
||||||
// Size of the data
|
// Size of the data
|
||||||
size_t size = [data length];
|
size_t size = [data length];
|
||||||
|
|
||||||
|
|||||||
Submodule src/lib/imgui updated: d7454de80a...aa23f3801b
Reference in New Issue
Block a user