run setup and reset at 20FPS for now

This commit is contained in:
Maxime Desroches
2025-08-07 14:33:40 -07:00
parent f13ec6cb27
commit a800c129b0
2 changed files with 2 additions and 2 deletions

View File

@@ -125,7 +125,7 @@ def main():
elif sys.argv[1] == "--format":
mode = ResetMode.FORMAT
gui_app.init_window("System Reset")
gui_app.init_window("System Reset", 20)
reset = Reset(mode)
if mode == ResetMode.FORMAT:

View File

@@ -333,7 +333,7 @@ class Setup(Widget):
def main():
try:
gui_app.init_window("Setup")
gui_app.init_window("Setup", 20)
setup = Setup()
for _ in gui_app.render():
setup.render(rl.Rectangle(0, 0, gui_app.width, gui_app.height))