mirror of https://github.com/mgba-emu/mgba.git
Windows: Fix VDir.rewind
This commit is contained in:
parent
caab7f6d89
commit
1844e37f5c
1
CHANGES
1
CHANGES
|
@ -14,6 +14,7 @@ Bugfixes:
|
|||
- Util: Fix highest-fd socket not being returned by SocketAccept
|
||||
- Qt: Fix linking after some windows have been closed
|
||||
- GBA Video: Fix wrong palette on 256-color sprites in OBJWIN
|
||||
- Windows: Fix VDir.rewind
|
||||
Misc:
|
||||
- Qt: Improved HiDPI support
|
||||
- Feature: Support ImageMagick 7
|
||||
|
|
|
@ -84,7 +84,7 @@ void _vdwRewind(struct VDir* vd) {
|
|||
struct VDirW32* vdw = (struct VDirW32*) vd;
|
||||
FindClose(vdw->handle);
|
||||
wchar_t name[MAX_PATH + 1];
|
||||
MultiByteToWideChar(CP_UTF8, MB_PRECOMPOSED, vdw->path, -1, name, MAX_PATH);
|
||||
MultiByteToWideChar(CP_UTF8, 0, vdw->path, -1, name, MAX_PATH);
|
||||
StringCchCatNW(name, MAX_PATH, L"\\*", 2);
|
||||
if (vdw->vde.utf8Name) {
|
||||
free(vdw->vde.utf8Name);
|
||||
|
|
Loading…
Reference in New Issue