diff options
author | Cameron Cawley | 2019-08-13 16:44:58 +0100 |
---|---|---|
committer | GitHub | 2019-08-13 16:44:58 +0100 |
commit | e609d0247cfb1250f86072b53138d681cc11c6c0 (patch) | |
tree | 8e718336f6712d4aad31d2bc868c39bac5fcec9f /common/lua | |
parent | 46adbfa7b5e3637c026d68082d8b6db0c685b142 (diff) | |
download | scummvm-rg350-e609d0247cfb1250f86072b53138d681cc11c6c0.tar.gz scummvm-rg350-e609d0247cfb1250f86072b53138d681cc11c6c0.tar.bz2 scummvm-rg350-e609d0247cfb1250f86072b53138d681cc11c6c0.zip |
LUA: Fix end of namespace comment
Diffstat (limited to 'common/lua')
-rw-r--r-- | common/lua/double_serialization.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/lua/double_serialization.cpp b/common/lua/double_serialization.cpp index 38d837076c..36037f4ff7 100644 --- a/common/lua/double_serialization.cpp +++ b/common/lua/double_serialization.cpp @@ -65,4 +65,4 @@ double decodeDouble(SerializedDouble value) { return ((value.signAndSignificandTwo & 0x80000000) == 0x80000000) ? -returnValue : returnValue; } -} // End of namespace Sword25 +} // End of namespace Util |