mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
make default to PSP_MODEL_FAT
This commit is contained in:
parent
67e18f6e66
commit
327f111d32
1 changed files with 3 additions and 3 deletions
|
@ -37,8 +37,8 @@ const int PSP_POWER_CB_BATTERY_FULL = 0x00000064;
|
|||
|
||||
const int POWER_CB_AUTO = -1;
|
||||
|
||||
const int MODEL_PSP_FAT = 0;
|
||||
const int MODEL_PSP_SLIM = 1;
|
||||
const int PSP_MODEL_FAT = 0;
|
||||
const int PSP_MODEL_SLIM = 1;
|
||||
|
||||
const int numberOfCBPowerSlots = 16;
|
||||
const int numberOfCBPowerSlotsPrivate = 32;
|
||||
|
@ -285,7 +285,7 @@ float scePowerGetBusClockFrequencyFloat() {
|
|||
|
||||
|
||||
u32 IsPSPNonFat() {
|
||||
return MODEL_PSP_SLIM;
|
||||
return PSP_MODEL_FAT;
|
||||
}
|
||||
|
||||
static const HLEFunction scePower[] = {
|
||||
|
|
Loading…
Add table
Reference in a new issue