diff options
author | Loic Blot <loic.blot@unix-experience.fr> | 2021-05-03 10:27:00 +0200 |
---|---|---|
committer | Loïc Blot <nerzhul@users.noreply.github.com> | 2021-05-03 19:49:19 +0200 |
commit | de85bc9227ef0db01854fa0eef89256646b4d578 (patch) | |
tree | 9fa8a8e9d47178b830b3ac5ccc84af0546d14540 /src/client/content_mapblock.cpp | |
parent | 48d5abd5bee7a3f956cb2b92745bed6313cf5d8a (diff) | |
download | minetest-de85bc9227ef0db01854fa0eef89256646b4d578.tar.gz minetest-de85bc9227ef0db01854fa0eef89256646b4d578.tar.bz2 minetest-de85bc9227ef0db01854fa0eef89256646b4d578.zip |
fix: some code tidy about includes & irr namespaces
Diffstat (limited to 'src/client/content_mapblock.cpp')
-rw-r--r-- | src/client/content_mapblock.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/content_mapblock.cpp b/src/client/content_mapblock.cpp index e530f3d7f..810c57138 100644 --- a/src/client/content_mapblock.cpp +++ b/src/client/content_mapblock.cpp @@ -61,7 +61,7 @@ static constexpr u16 quad_indices[] = {0, 1, 2, 2, 3, 0}; const std::string MapblockMeshGenerator::raillike_groupname = "connect_to_raillike"; MapblockMeshGenerator::MapblockMeshGenerator(MeshMakeData *input, MeshCollector *output, - irr::scene::IMeshManipulator *mm): + scene::IMeshManipulator *mm): data(input), collector(output), nodedef(data->m_client->ndef()), |