mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2024-10-31 15:45:06 -04:00
80863fc7f2
21 lines
399 B
C
21 lines
399 B
C
#pragma once
|
|||
|
|||
static const char *SWITCH_CPU_PROFILES[] = {
|
|||
"Maximum Performance",
|
|||
"High Performance",
|
|||
"Boost Performance",
|
|||
"Stock Performance",
|
|||
"Powersaving Mode 1",
|
|||
"Powersaving Mode 2",
|
|||
"Powersaving Mode 3",
|
|||
};
|
|||
|
|||
static unsigned SWITCH_CPU_SPEEDS_VALUES[] = {
|
|||
1785000000,
|
|||
1581000000,
|
|||
1224000000,
|
|||
1020000000,
|
|||
918000000,
|
|||
816000000,
|
|||
714000000
|
|||
};
|