Update default firmware version to 6.60.

Not many games call sceKernelDevkitVersion(), but we mostly match 6.60.

See also: https://report.ppsspp.org/logs/kind/883?status=any
This commit is contained in:
Unknown W. Brackets 2018-05-06 21:28:57 -07:00
parent 79f8388e65
commit 43b18578f4
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ extern const char *PPSSPP_GIT_VERSION;
const int PSP_MODEL_FAT = 0;
const int PSP_MODEL_SLIM = 1;
const int PSP_DEFAULT_FIRMWARE = 150;
const int PSP_DEFAULT_FIRMWARE = 660;
static const s8 VOLUME_OFF = 0;
static const s8 VOLUME_MAX = 10;

View File

@ -313,7 +313,7 @@ u32 sceKernelDevkitVersion()
int revision = firmwareVersion % 10;
int devkitVersion = (major << 24) | (minor << 16) | (revision << 8) | 0x10;
DEBUG_LOG_REPORT_ONCE(devkitVer, SCEKERNEL, "%08x=sceKernelDevkitVersion()", devkitVersion);
DEBUG_LOG(SCEKERNEL, "%08x=sceKernelDevkitVersion()", devkitVersion);
return devkitVersion;
}