mirror of https://github.com/mgba-emu/mgba.git
VFS: Fix return values of VFileFILE.read and .write
This commit is contained in:
parent
54ea3dbbcf
commit
19b81a2163
1
CHANGES
1
CHANGES
|
@ -10,6 +10,7 @@ Bugfixes:
|
|||
- Libretro: Fix a memory leak with the render buffer
|
||||
- GBA Audio: Fix 8-bit writes to audio channel 3 and 4 registers
|
||||
- GBA Audio: Fix audio channels being silenced at the wrong time
|
||||
- VFS: Fix return values of VFileFILE.read and .write
|
||||
Misc:
|
||||
- Qt: Window size command line options are now supported
|
||||
- Qt: Increase usability of key mapper
|
||||
|
|
|
@ -79,12 +79,12 @@ off_t _vffSeek(struct VFile* vf, off_t offset, int whence) {
|
|||
|
||||
ssize_t _vffRead(struct VFile* vf, void* buffer, size_t size) {
|
||||
struct VFileFILE* vff = (struct VFileFILE*) vf;
|
||||
return fread(buffer, size, 1, vff->file);
|
||||
return fread(buffer, 1, size, vff->file);
|
||||
}
|
||||
|
||||
ssize_t _vffWrite(struct VFile* vf, const void* buffer, size_t size) {
|
||||
struct VFileFILE* vff = (struct VFileFILE*) vf;
|
||||
return fwrite(buffer, size, 1, vff->file);
|
||||
return fwrite(buffer, 1, size, vff->file);
|
||||
}
|
||||
|
||||
static void* _vffMap(struct VFile* vf, size_t size, int flags) {
|
||||
|
|
Loading…
Reference in New Issue