mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 22:53:50 +00:00
Fix brusshape enum values
This commit is contained in:
parent
c031543420
commit
bae8636ec0
1 changed files with 4 additions and 4 deletions
|
@ -48,10 +48,10 @@ namespace CSVRender
|
||||||
|
|
||||||
enum BrushShape
|
enum BrushShape
|
||||||
{
|
{
|
||||||
BrushShape_Point = 1,
|
BrushShape_Point = 0,
|
||||||
BrushShape_Square = 2,
|
BrushShape_Square = 1,
|
||||||
BrushShape_Circle = 3,
|
BrushShape_Circle = 2,
|
||||||
BrushShape_Custom = 4
|
BrushShape_Custom = 3
|
||||||
};
|
};
|
||||||
|
|
||||||
/// Editmode for terrain shape grid
|
/// Editmode for terrain shape grid
|
||||||
|
|
Loading…
Reference in a new issue