Skip to content

Commit

Permalink
N64: Fix build adter WriteStream::pos() addition
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Aug 4, 2016
1 parent 2597be2 commit eedd128
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions backends/platform/n64/pakfs_save_manager.h
Expand Up @@ -72,6 +72,10 @@ class OutPAKSave : public Common::OutSaveFile {
public:
uint32 write(const void *buf, uint32 cnt);

int32 pos() {
return pakfs_tell(fd);
}

OutPAKSave(const char *_filename) : fd(NULL) {
fd = pakfs_open(_filename, "w");
}
Expand Down

0 comments on commit eedd128

Please sign in to comment.