aboutsummaryrefslogtreecommitdiff
path: root/src/entity.cpp
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2020-05-30 12:23:41 +0100
committergingerBill <bill@gingerbill.org>2020-05-30 12:23:41 +0100
commit84fd40de77deb71544fce7c3c34177ee2f9c4405 (patch)
tree0f2c55f474c411343a6668b5c9af9791e8de8963 /src/entity.cpp
parent1d7f99cbdf28236e8d55e7c36ec14c693d139f3f (diff)
Fix rules for recursive initialization with procedure entities; Fix executable name if not given
Diffstat (limited to 'src/entity.cpp')
-rw-r--r--src/entity.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/entity.cpp b/src/entity.cpp
index dba289305..ab4d6fd40 100644
--- a/src/entity.cpp
+++ b/src/entity.cpp
@@ -66,7 +66,7 @@ enum EntityFlag : u32 {
enum EntityState {
EntityState_Unresolved = 0,
- EntityState_InProgress = 1,
+ EntityState_InProgress = 1,
EntityState_Resolved = 2,
};