summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2024-04-10 18:49:02 +0200
committerRémi Verschelde <rverschelde@gmail.com>2024-04-10 18:49:02 +0200
commit83b916bb00eb8cac4584143a80f5cfad7ce1e908 (patch)
tree7e4bde27d43a204104053dc6d1b4f7dd412f39e5
parenta8bd51904a7b18bb2e8a6e545277a0418917189e (diff)
downloadredot-engine-83b916bb00eb8cac4584143a80f5cfad7ce1e908.tar.gz
Fix a doc and a test issue not caught by CI
-rw-r--r--doc/classes/TileMapLayer.xml2
-rw-r--r--tests/core/templates/test_oa_hash_map.h2
2 files changed, 1 insertions, 3 deletions
diff --git a/doc/classes/TileMapLayer.xml b/doc/classes/TileMapLayer.xml
index bc8e259599..da716a8fe3 100644
--- a/doc/classes/TileMapLayer.xml
+++ b/doc/classes/TileMapLayer.xml
@@ -268,7 +268,7 @@
The quadrant size does not apply on a Y-sorted [TileMapLayer], as tiles are be grouped by Y position instead in that case.
[b]Note:[/b] As quadrants are created according to the map's coordinate system, the quadrant's "square shape" might not look like square in the [TileMapLayer]'s local coordinate system.
</member>
- <member name="tile_map_data" type="PackedByteArray" setter="set_tile_map_data_from_array" getter="get_tile_map_data_as_array" default="PackedByteArray(0, 0)">
+ <member name="tile_map_data" type="PackedByteArray" setter="set_tile_map_data_from_array" getter="get_tile_map_data_as_array" default="PackedByteArray(&quot;AAA=&quot;)">
The raw tile map data as a byte array.
</member>
<member name="tile_set" type="TileSet" setter="set_tile_set" getter="get_tile_set">
diff --git a/tests/core/templates/test_oa_hash_map.h b/tests/core/templates/test_oa_hash_map.h
index 6e80b52054..9359efa964 100644
--- a/tests/core/templates/test_oa_hash_map.h
+++ b/tests/core/templates/test_oa_hash_map.h
@@ -100,11 +100,9 @@ TEST_CASE("[OAHashMap] Iteration") {
expected.push_back(Pair<int, int>(0, 12934));
expected.push_back(Pair<int, int>(123485, 1238888));
- int idx = 0;
for (OAHashMap<int, int>::Iterator it = map.iter(); it.valid; it = map.next_iter(it)) {
int64_t result = expected.find(Pair<int, int>(*it.key, *it.value));
CHECK(result >= 0);
- idx++;
}
}