mirror of
https://github.com/libretro/beetle-psx-libretro.git
synced 2024-11-24 01:09:51 +00:00
FileWrapper - remove unused flush function
This commit is contained in:
parent
83073297cf
commit
4b63a30f3b
@ -70,11 +70,6 @@ uint64_t FileWrapper::read(void *data, uint64_t count, bool error_on_eof)
|
||||
return fread(data, 1, count, fp);
|
||||
}
|
||||
|
||||
void FileWrapper::flush(void)
|
||||
{
|
||||
fflush(fp);
|
||||
}
|
||||
|
||||
void FileWrapper::write(const void *data, uint64_t count)
|
||||
{
|
||||
fwrite(data, 1, count, fp);
|
||||
|
@ -23,8 +23,6 @@ class FileWrapper
|
||||
|
||||
int64_t size(void);
|
||||
|
||||
void flush(void);
|
||||
|
||||
void close(void); // Flushes and closes the underlying OS/C lib file. Calling any other method of this class after a call to
|
||||
// this method is illegal(except for the implicit call to the destructor).
|
||||
//
|
||||
|
Loading…
Reference in New Issue
Block a user