From 624af11ca193240a866d06c6329da8297f085533 Mon Sep 17 00:00:00 2001 From: ksherlock Date: Sun, 23 May 2010 18:35:23 +0000 Subject: [PATCH] fix createBlockCache definition git-svn-id: https://profuse.googlecode.com/svn/branches/v2@264 aa027e90-d47c-11dd-86d7-074df07e0730 --- Device/DiskImage.cpp | 2 +- Device/DiskImage.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Device/DiskImage.cpp b/Device/DiskImage.cpp index 3820534..1c8d0cf 100644 --- a/Device/DiskImage.cpp +++ b/Device/DiskImage.cpp @@ -145,7 +145,7 @@ void ProDOSOrderDiskImage::Validate(MappedFile *f) } -BlockCache *ProDOSOrderDiskImage::createBlockCache(unsigned size) +BlockCache *ProDOSOrderDiskImage::createBlockCache() { return new MappedBlockCache(this, address()); } diff --git a/Device/DiskImage.h b/Device/DiskImage.h index 2132c37..9bd87d9 100644 --- a/Device/DiskImage.h +++ b/Device/DiskImage.h @@ -62,7 +62,7 @@ public: static ProDOSOrderDiskImage *Open(MappedFile *); - virtual BlockCache *createBlockCache(unsigned size); + virtual BlockCache *createBlockCache(); private: ProDOSOrderDiskImage(const char *name, bool readOnly);