mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-22 00:39:41 +00:00
Merge pull request #2645 from akortunov/master
Make R&D patch more noticable
This commit is contained in:
commit
1f91c56472
1 changed files with 4 additions and 0 deletions
|
@ -306,6 +306,10 @@ struct dtMeshTile
|
||||||
int dataSize; ///< Size of the tile data.
|
int dataSize; ///< Size of the tile data.
|
||||||
int flags; ///< Tile flags. (See: #dtTileFlags)
|
int flags; ///< Tile flags. (See: #dtTileFlags)
|
||||||
dtMeshTile* next; ///< The next free tile, or the next tile in the spatial grid.
|
dtMeshTile* next; ///< The next free tile, or the next tile in the spatial grid.
|
||||||
|
// OpenMW code - make dtMeshTile POD since R&D init it by memset
|
||||||
|
//private:
|
||||||
|
// dtMeshTile(const dtMeshTile&);
|
||||||
|
// dtMeshTile& operator=(const dtMeshTile&);
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Get flags for edge in detail triangle.
|
/// Get flags for edge in detail triangle.
|
||||||
|
|
Loading…
Reference in a new issue