aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/mpal/memory.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2012-05-19 16:57:17 +1000
committerPaul Gilbert2012-05-19 16:57:17 +1000
commit8457c1c7682e3c0d0c382c01b042158ec506e300 (patch)
tree62c6ed1b0e60b09d90014911f810ac13d9d82736 /engines/tony/mpal/memory.cpp
parentbd064fe044beb4c38b48a1c111d922fdfcf73516 (diff)
downloadscummvm-rg350-8457c1c7682e3c0d0c382c01b042158ec506e300.tar.gz
scummvm-rg350-8457c1c7682e3c0d0c382c01b042158ec506e300.tar.bz2
scummvm-rg350-8457c1c7682e3c0d0c382c01b042158ec506e300.zip
TONY: Removed deprecated MPAL stubs file
Diffstat (limited to 'engines/tony/mpal/memory.cpp')
-rw-r--r--engines/tony/mpal/memory.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/engines/tony/mpal/memory.cpp b/engines/tony/mpal/memory.cpp
index 166e3598f8..4410e8016c 100644
--- a/engines/tony/mpal/memory.cpp
+++ b/engines/tony/mpal/memory.cpp
@@ -146,6 +146,15 @@ void MemoryManager::erase(HGLOBAL handle) {
erase(&item);
}
+/****************************************************************************\
+* Stand-alone methods
+\****************************************************************************/
+
+void CopyMemory(void *dst, const void *first, int size) {
+ Common::copy((const byte *)first, (const byte *)first + size, (byte *)dst);
+}
+
+
} // end of namespace MPAL
} // end of namespace Tony