mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-02-17 20:58:14 +00:00
Spelling fix.
This commit is contained in:
parent
850d640f42
commit
fb689b45f1
@ -922,7 +922,7 @@ int sceKernelPrintf(const char *formatString)
|
|||||||
|
|
||||||
int sceKernelSetCompiledSdkVersion(int sdkVersion) {
|
int sceKernelSetCompiledSdkVersion(int sdkVersion) {
|
||||||
int sdkMainVersion = sdkVersion & 0xFFFF0000;
|
int sdkMainVersion = sdkVersion & 0xFFFF0000;
|
||||||
bool valiSDK = false;
|
bool validSDK = false;
|
||||||
switch (sdkMainVersion) {
|
switch (sdkMainVersion) {
|
||||||
case 0x01000000:
|
case 0x01000000:
|
||||||
case 0x01050000:
|
case 0x01050000:
|
||||||
@ -937,14 +937,14 @@ int sceKernelSetCompiledSdkVersion(int sdkVersion) {
|
|||||||
case 0x03040000:
|
case 0x03040000:
|
||||||
case 0x03050000:
|
case 0x03050000:
|
||||||
case 0x03060000:
|
case 0x03060000:
|
||||||
valiSDK = true;
|
validSDK = true;
|
||||||
break;
|
break;
|
||||||
default:
|
default:
|
||||||
valiSDK = false;
|
validSDK = false;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!valiSDK) {
|
if (!validSDK) {
|
||||||
WARN_LOG_REPORT(SCEKERNEL, "sceKernelSetCompiledSdkVersion unknown SDK: %x", sdkVersion);
|
WARN_LOG_REPORT(SCEKERNEL, "sceKernelSetCompiledSdkVersion unknown SDK: %x", sdkVersion);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user