srvpm: Correct the previous sysver check fix

This commit is contained in:
fincs 2020-12-08 23:16:29 +01:00
parent 3cefb61d91
commit 02f516111f
No known key found for this signature in database
GPG Key ID: 62C7609ADA219C60

View File

@ -8,7 +8,7 @@
#include <3ds/ipc.h>
#include <3ds/os.h>
#define IS_PRE_7X (GET_VERSION_MINOR(osGetFirmVersion()) < 39)
#define IS_PRE_7X (GET_VERSION_MINOR(osGetKernelVersion()) < 39)
static Handle srvPmHandle;
static int srvPmRefCount;