Fix recovery firmware : add FS in parameters of DisplayAppRecovery ctor.

This commit is contained in:
Jean-François Milants
2022-09-11 18:21:29 +02:00
parent 4cf73fc169
commit 0cd1d6f8cf
2 changed files with 6 additions and 2 deletions

View File

@@ -35,6 +35,7 @@ namespace Pinetime {
class TimerController;
class AlarmController;
class BrightnessController;
class FS;
}
namespace System {
@@ -59,7 +60,8 @@ namespace Pinetime {
Pinetime::Controllers::TimerController& timerController,
Pinetime::Controllers::AlarmController& alarmController,
Pinetime::Controllers::BrightnessController& brightnessController,
Pinetime::Controllers::TouchHandler& touchHandler);
Pinetime::Controllers::TouchHandler& touchHandler,
Pinetime::Controllers::FS& filesystem);
void Start();
void Start(Pinetime::System::BootErrors) {
Start();