all repos — mgba @ 609e52b6a0a5b62898b8951249209b34448d154d

mGBA Game Boy Advance Emulator

Core: Fix mCoreIsCompatible on null vf
Vicki Pfau vi@endrift.com
Tue, 23 Jun 2020 22:59:28 -0700
commit

609e52b6a0a5b62898b8951249209b34448d154d

parent

f6b8f9801cc7cab3eaca2b14870aac2f80065851

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

jump to
M src/core/core.csrc/core/core.c

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

enum mPlatform mCoreIsCompatible(struct VFile* vf) { if (!vf) { - return false; + return PLATFORM_NONE; } const struct mCoreFilter* filter; for (filter = &_filters[0]; filter->filter; ++filter) {