diff options
author | Max Horn | 2002-11-21 16:51:33 +0000 |
---|---|---|
committer | Max Horn | 2002-11-21 16:51:33 +0000 |
commit | 716c505416862fef3952e9304a86e47cd4179de1 (patch) | |
tree | f50cecf1b84530bcfb6444a0a758946571bd7870 | |
parent | 32de70fb65d03a51688a8a67fa6c99b9cd989b53 (diff) | |
download | scummvm-rg350-716c505416862fef3952e9304a86e47cd4179de1.tar.gz scummvm-rg350-716c505416862fef3952e9304a86e47cd4179de1.tar.bz2 scummvm-rg350-716c505416862fef3952e9304a86e47cd4179de1.zip |
now this was an *EVIL* typo
svn-id: r5668
-rw-r--r-- | common/str.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/str.cpp b/common/str.cpp index 685faf85fa..e8e73a32a2 100644 --- a/common/str.cpp +++ b/common/str.cpp @@ -67,7 +67,7 @@ String::String(const String &str) _refCount = str._refCount; _capacity = str._capacity; - _len = str._capacity; + _len = str._len; _str = str._str; } |