sysclk: fix dvb shift display
This commit is contained in:
@@ -0,0 +1,127 @@
|
||||
[status-monitor]
|
||||
battery_avg_iir_filter=false
|
||||
battery_time_left_refreshrate=60
|
||||
average_gpu_load=false
|
||||
use_old_fps_average=false
|
||||
|
||||
[full]
|
||||
refresh_rate=1
|
||||
layer_width_align=left
|
||||
show_real_freqs=true
|
||||
show_deltas=true
|
||||
show_target_freqs=true
|
||||
show_fps=true
|
||||
show_res=true
|
||||
show_read_speed=true
|
||||
use_dynamic_colors=true
|
||||
disable_screenshots=false
|
||||
separator_color=#888F
|
||||
cat_color_1=#8FFF
|
||||
cat_color_2=#8CFF
|
||||
text_color=#FFFF
|
||||
|
||||
[mini]
|
||||
refresh_rate=1
|
||||
handheld_font_size=15
|
||||
docked_font_size=15
|
||||
spacing=8
|
||||
real_freqs=true
|
||||
real_volts=true
|
||||
show_full_cpu=false
|
||||
show_full_res=true
|
||||
show_fan_percentage=true
|
||||
show_soc_voltage=false
|
||||
use_dynamic_colors=true
|
||||
show_vddq=false
|
||||
show_vdd2=true
|
||||
decimal_vdd2=false
|
||||
show_dtc=true
|
||||
use_dtc_symbol=true
|
||||
dtc_format=%m-%d-%Y%H:%M:%S
|
||||
show=DTC+BAT+CPU+GPU+RAM+TMP+FPS+RES
|
||||
replace_MB_with_RAM_load=true
|
||||
show_RAM_load_CPU_GPU=false
|
||||
invert_battery_display=true
|
||||
disable_screenshots=false
|
||||
sleep_exit=false
|
||||
frame_offset_x=10
|
||||
frame_offset_y=10
|
||||
frame_padding=10
|
||||
background_color=#0009
|
||||
focus_background_color=#000F
|
||||
separator_color=#888F
|
||||
cat_color=#2DFF
|
||||
text_color=#FFFF
|
||||
|
||||
[micro]
|
||||
refresh_rate=1
|
||||
layer_height_align=top
|
||||
handheld_font_size=15
|
||||
docked_font_size=15
|
||||
text_align=center
|
||||
real_freqs=true
|
||||
real_volts=true
|
||||
show_full_cpu=false
|
||||
show_full_res=false
|
||||
show_soc_voltage=true
|
||||
use_dynamic_colors=true
|
||||
show_vddq=false
|
||||
show_vdd2=true
|
||||
decimal_vdd2=false
|
||||
show_dtc=true
|
||||
use_dtc_symbol=true
|
||||
dtc_format=%H:%M:%S
|
||||
show=FPS+CPU+GPU+RAM+SOC+BAT+DTC
|
||||
replace_GB_with_RAM_load=true
|
||||
invert_battery_display=false
|
||||
disable_screenshots=false
|
||||
sleep_exit=false
|
||||
background_color=#0009
|
||||
separator_color=#888F
|
||||
cat_color=#2DFF
|
||||
text_color=#FFFF
|
||||
|
||||
[fps-counter]
|
||||
refresh_rate=30
|
||||
handheld_font_size=40
|
||||
docked_font_size=40
|
||||
use_integer_counter=false
|
||||
disable_screenshots=false
|
||||
frame_offset_x=10
|
||||
frame_offset_y=10
|
||||
frame_padding=10
|
||||
background_color=#0009
|
||||
focus_background_color=#000F
|
||||
text_color=#8CFF
|
||||
|
||||
[fps-graph]
|
||||
refresh_rate=30
|
||||
show_info=false
|
||||
use_dynamic_colors=true
|
||||
disable_screenshots=false
|
||||
frame_offset_x=10
|
||||
frame_offset_y=10
|
||||
frame_padding=10
|
||||
background_color=#0009
|
||||
focus_background_color=#000F
|
||||
fps_counter_color=#888C
|
||||
border_color=#2DFF
|
||||
dashed_line_color=#8888
|
||||
main_line_color=#FFFF
|
||||
rounded_line_color=#F0FF
|
||||
perfect_line_color=#0C0F
|
||||
max_fps_text_color=#FFFF
|
||||
min_fps_text_color=#FFFF
|
||||
text_color=#FFFF
|
||||
cat_color=#0F0F
|
||||
|
||||
[game_resolutions]
|
||||
refresh_rate=10
|
||||
disable_screenshots=false
|
||||
frame_offset_x=10
|
||||
frame_offset_y=10
|
||||
frame_padding=10
|
||||
background_color=#0009
|
||||
focus_background_color=#000F
|
||||
cat_color=#8FFF
|
||||
text_color=#FFFF
|
||||
@@ -273,7 +273,7 @@ void BaseMenuGui::refresh()
|
||||
tsl::elm::Element* BaseMenuGui::baseUI()
|
||||
{
|
||||
auto* list = new tsl::elm::List();
|
||||
list->addItem(new tsl::elm::CustomDrawer([](tsl::gfx::Renderer*, s32, s32, s32, s32) {}), 20);
|
||||
list->addItem(new tsl::elm::CustomDrawer([](tsl::gfx::Renderer*, s32, s32, s32, s32) {}), 50); // add a bit of space
|
||||
this->listElement = list;
|
||||
this->listUI();
|
||||
|
||||
|
||||
@@ -306,7 +306,7 @@ void MiscGui::listUI()
|
||||
addConfigButton(
|
||||
HocClkConfigValue_KipFileName,
|
||||
"KIP File Name",
|
||||
ValueRange(0, 6, 1, "", 0),
|
||||
ValueRange(0, 1, 1, "", 0),
|
||||
"KIP File Name",
|
||||
&thresholdsDisabled,
|
||||
{},
|
||||
@@ -330,6 +330,17 @@ void MiscGui::listUI()
|
||||
|
||||
this->listElement->addItem(new tsl::elm::CategoryHeader("RAM/Memory Settings"));
|
||||
|
||||
addConfigButton(
|
||||
KipConfigValue_emcDvbShift,
|
||||
"DVB Shift",
|
||||
ValueRange(0, 10, 1, "", 1),
|
||||
"DVB Shift",
|
||||
&thresholdsDisabled,
|
||||
{},
|
||||
{},
|
||||
false
|
||||
);
|
||||
|
||||
std::map<uint32_t, std::string> emc_freq_label_e = {
|
||||
{133120000, "Handheld"},
|
||||
{160000000, "Docked & Safe Max"},
|
||||
|
||||
BIN
dist/atmosphere/contents/00FF0000636C6BFF/exefs.nsp
vendored
BIN
dist/atmosphere/contents/00FF0000636C6BFF/exefs.nsp
vendored
Binary file not shown.
Reference in New Issue
Block a user