aboutsummaryrefslogtreecommitdiff
path: root/src/universe.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* C++ migration: changed file extensions from .c to .cppBenoit Germain2024-03-191-75/+0
|
* C++ migration: buildfixesBenoit Germain2024-03-191-1/+1
| | | | Essentially, buildfixes when compiling as C++, plus properly marking public API as extern "C"
* Changed all indentations to all whitespacesBenoit Germain2022-02-071-17/+17
| | | | Tabs mess up alignment of stack contents comments, so I'm done with them.
* Lua 5.4 supportBenoit Germain2018-11-271-1/+1
|
* Internal code tweaksBenoit Germain2018-11-191-17/+8
| | | | | | * Registry access code utility macros * CONFIG_REGKEY and LOOKUP_REGKEY are now lightuserdata instead of strings * Stack checking debug macros improvements
* Fix potential crash at application shutdown when deep userdata were created ↵Benoit Germain2018-11-071-1/+8
| | | | before Lanes is required
* Fix compilation warning glitchesBenoit Germain2018-11-051-0/+2
|
* BuildfixBenoit Germain2018-10-301-1/+1
|
* Improve LuaJIT-x64 compatibilityBenoit Germain2018-10-301-5/+6
| | | | | Restrict internal "light userdata constants" to 47 significant bits when compiling against LuaJIT-x64
* Fix Lanes build by reorganizing types around a bitBenoit Germain2018-10-251-7/+7
|
* Fix for deep-aware modulesBenoit Germain2017-08-011-0/+74
Don't crash when using a module that creates Lanes-compatible deep userdata. Added a sample deep-aware module.