aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/mpal/stubs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/tony/mpal/stubs.cpp')
-rw-r--r--engines/tony/mpal/stubs.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/engines/tony/mpal/stubs.cpp b/engines/tony/mpal/stubs.cpp
index 23bc18b0ea..89740fdd52 100644
--- a/engines/tony/mpal/stubs.cpp
+++ b/engines/tony/mpal/stubs.cpp
@@ -40,6 +40,10 @@ uint16 GetAsyncKeyState(Common::KeyCode kc) {
return 0;
}
+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