diff options
Diffstat (limited to 'engines/lure')
| -rw-r--r-- | engines/lure/memory.cpp | 2 | ||||
| -rw-r--r-- | engines/lure/memory.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/lure/memory.cpp b/engines/lure/memory.cpp index 2a24101dd3..ab540f7bad 100644 --- a/engines/lure/memory.cpp +++ b/engines/lure/memory.cpp @@ -66,7 +66,7 @@ void MemoryBlock::empty() { ::memset(_data, 0, _size); } -void MemoryBlock::memorySet(int c, size_t startIndex, size_t num) { +void MemoryBlock::setBytes(int c, size_t startIndex, size_t num) { byte *p = _data + startIndex; ::memset(p, c, num); } diff --git a/engines/lure/memory.h b/engines/lure/memory.h index c2f735ca2b..3756608d6a 100644 --- a/engines/lure/memory.h +++ b/engines/lure/memory.h @@ -42,7 +42,7 @@ public: uint32 size() { return _size; } void empty(); - void memorySet(int c, size_t startIndex, size_t num); + void setBytes(int c, size_t startIndex, size_t num); void copyFrom(MemoryBlock *src); void copyFrom(MemoryBlock *src, uint32 srcPos, uint32 destPos, uint32 srcLen); void copyFrom(const byte *src, uint32 srcPos, uint32 destPos, uint32 srcLen); |
