mirror of
https://github.com/izzy2lost/ppsspp.git
synced 2026-03-10 12:43:04 -07:00
virtfs: Oops, correct Version check.
Must not have added after?
This commit is contained in:
@@ -855,8 +855,8 @@ VirtualDiscFileSystem::Handler::Handler(const char *filename, VirtualDiscFileSys
|
||||
Read = (ReadFunc)dlsym(library, "Read");
|
||||
Close = (CloseFunc)dlsym(library, "Close");
|
||||
|
||||
VersionFunc Version = VersionFunc();
|
||||
if (Version() >= 2) {
|
||||
VersionFunc Version = (VersionFunc)dlsym(library, "Version");
|
||||
if (Version && Version() >= 2) {
|
||||
ShutdownV2 = (ShutdownV2Func)Shutdown;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user