aboutsummaryrefslogtreecommitdiff
path: root/src/universe.h
diff options
context:
space:
mode:
authorBenoit Germain <benoit.germain@ubisoft.com>2024-03-20 09:09:27 +0100
committerBenoit Germain <benoit.germain@ubisoft.com>2024-03-20 09:09:27 +0100
commit0b516e9490b51bdd15c347fcda35b5dbb06b4829 (patch)
tree33e16fe3a143fa6dcfe3d4b57f0b731c8e414652 /src/universe.h
parentf707ad2568e6bfb8f34496ce647d0fd153723448 (diff)
downloadlanes-0b516e9490b51bdd15c347fcda35b5dbb06b4829.tar.gz
lanes-0b516e9490b51bdd15c347fcda35b5dbb06b4829.tar.bz2
lanes-0b516e9490b51bdd15c347fcda35b5dbb06b4829.zip
C++ migration: bool_t → bool
Diffstat (limited to 'src/universe.h')
-rw-r--r--src/universe.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/universe.h b/src/universe.h
index 0224e99..77b3ea5 100644
--- a/src/universe.h
+++ b/src/universe.h
@@ -52,9 +52,9 @@ typedef struct ProtectedAllocator_s ProtectedAllocator;
52struct s_Universe 52struct s_Universe
53{ 53{
54 // for verbose errors 54 // for verbose errors
55 bool_t verboseErrors; 55 bool verboseErrors;
56 56
57 bool_t demoteFullUserdata; 57 bool demoteFullUserdata;
58 58
59 // before a state is created, this function will be called to obtain the allocator 59 // before a state is created, this function will be called to obtain the allocator
60 lua_CFunction provide_allocator; 60 lua_CFunction provide_allocator;