all repos — mgba @ 7177af28f8de39c21a2363b794048de1b915156b

mGBA Game Boy Advance Emulator

3DS, PSP2: Add missing VFile.readline implementations
Jeffrey Pfau jeffrey@endrift.com
Mon, 02 Nov 2015 23:11:24 -0800
commit

7177af28f8de39c21a2363b794048de1b915156b

parent

47c4eb97618aee3d04274cda0ffdba0a06d2aae0

2 files changed, 2 insertions(+), 2 deletions(-)

jump to
M src/platform/3ds/3ds-vfs.csrc/platform/3ds/3ds-vfs.c

@@ -67,7 +67,7 @@

vf3d->d.close = _vf3dClose; vf3d->d.seek = _vf3dSeek; vf3d->d.read = _vf3dRead; - vf3d->d.readline = 0; + vf3d->d.readline = VFileReadline; vf3d->d.write = _vf3dWrite; vf3d->d.map = _vf3dMap; vf3d->d.unmap = _vf3dUnmap;
M src/platform/psp2/sce-vfs.csrc/platform/psp2/sce-vfs.c

@@ -62,7 +62,7 @@

vfsce->d.close = _vfsceClose; vfsce->d.seek = _vfsceSeek; vfsce->d.read = _vfsceRead; - vfsce->d.readline = 0; + vfsce->d.readline = VFileReadline; vfsce->d.write = _vfsceWrite; vfsce->d.map = _vfsceMap; vfsce->d.unmap = _vfsceUnmap;