mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 03:33:48 +00:00
uninitialized variables-gui
This commit is contained in:
parent
b9c207765e
commit
9fef1b3cd1
43 changed files with 119 additions and 33 deletions
|
|
@ -773,7 +773,7 @@ ConsoleDocClass( TerrainSmoothAction,
|
|||
);
|
||||
|
||||
TerrainSmoothAction::TerrainSmoothAction()
|
||||
: UndoAction( "Terrain Smoothing" )
|
||||
: UndoAction("Terrain Smoothing"), mFactor(1.0), mSteps(1), mTerrainId(NULL)
|
||||
{
|
||||
}
|
||||
|
||||
|
|
@ -836,4 +836,4 @@ void TerrainSmoothAction::redo()
|
|||
|
||||
// Tell the terrain to update itself.
|
||||
terrain->updateGrid( Point2I::Zero, Point2I::Max, true );
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue