aboutsummaryrefslogtreecommitdiff
path: root/common
diff options
context:
space:
mode:
Diffstat (limited to 'common')
-rw-r--r--common/savefile.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/common/savefile.h b/common/savefile.h
index eb7e6f946e..80cd03e068 100644
--- a/common/savefile.h
+++ b/common/savefile.h
@@ -28,7 +28,6 @@
#include "common/stream.h"
#include "common/str-array.h"
#include "common/error.h"
-#include "common/ptr.h"
namespace Common {
@@ -47,7 +46,7 @@ typedef SeekableReadStream InSaveFile;
*/
class OutSaveFile: public WriteStream {
protected:
- ScopedPtr<WriteStream> _wrapped;
+ WriteStream *_wrapped;
public:
OutSaveFile(WriteStream *w);