Codestyle tweak
This commit is contained in:
@@ -125,6 +125,9 @@ namespace FlaxEditor.Gizmo
|
||||
owner.RenderTask.AddCustomPostFx(_renderer);
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Destructor.
|
||||
/// </summary>
|
||||
~GridGizmo()
|
||||
{
|
||||
FlaxEngine.Object.Destroy(ref _renderer);
|
||||
|
||||
@@ -314,7 +314,7 @@ bool FileBase::WriteAllText(const StringView& path, const Char* data, int32 leng
|
||||
Array<byte> tmp;
|
||||
tmp.SetCapacity(length);
|
||||
|
||||
for (int i=0; i<length; ++i)
|
||||
for (int32 i = 0; i < length; i++)
|
||||
{
|
||||
Char c = data[i];
|
||||
if (c < 0x0080)
|
||||
|
||||
Reference in New Issue
Block a user