mirror of
https://github.com/Lorenzooone/cc3dsfs.git
synced 2026-03-21 17:55:00 -05:00
Disable async by default for weaker devices (Pi)
This commit is contained in:
parent
fa5a708e22
commit
d74de657db
|
|
@ -438,7 +438,11 @@ void reset_screen_info(ScreenInfo &info) {
|
|||
info.bot_rotation = 0;
|
||||
info.show_mouse = true;
|
||||
info.v_sync_enabled = false;
|
||||
#ifdef RASPI
|
||||
info.async = false;
|
||||
#else
|
||||
info.async = true;
|
||||
#endif
|
||||
info.top_scaling = DEFAULT_NO_SCALING_VALUE;
|
||||
info.bot_scaling = DEFAULT_NO_SCALING_VALUE;
|
||||
info.force_same_scaling = false;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user