summaryrefslogtreecommitdiff
path: root/source/fud_string.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'source/fud_string.cpp')
-rw-r--r--source/fud_string.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/fud_string.cpp b/source/fud_string.cpp
index cd35bdb..27496ff 100644
--- a/source/fud_string.cpp
+++ b/source/fud_string.cpp
@@ -64,7 +64,7 @@ String::String(const char* cString)
m_capacity = m_length + 1;
m_data = static_cast<utf8*>(fudAlloc(m_capacity));
fudAssert(m_data != nullptr);
- fudAssert(copyMem(m_buffer.data(), m_capacity, cString, m_length) == FudStatus::Success);
+ fudAssert(copyMem(m_data, m_capacity, cString, m_length) == FudStatus::Success);
fudAssert(nullTerminate() == FudStatus::Success);
}
}