fb_generic.cpp: adapt to "Refactor video.cpp: Convert void function to bool function for enhanced result checking"

- this only affects CST
This commit is contained in:
GetAway
2023-08-08 22:07:39 +02:00
parent 0822265af9
commit 23821c3e28
3 changed files with 2 additions and 7 deletions

View File

@@ -241,7 +241,7 @@ public:
bool SetCECMode(VIDEO_HDMI_CEC_MODE Mode);
void SetCECAutoView(bool OnOff);
void SetCECAutoStandby(bool OnOff);
void ShowPicture(const char * fname);
bool ShowPicture(const char * fname);
void StopPicture();
void Standby(bool bOn);
void Pig(int x, int y, int w, int h, int osd_w = 1064, int osd_h = 600);

View File

@@ -274,7 +274,7 @@ public:
bool SetCECMode(VIDEO_HDMI_CEC_MODE Mode);
void SetCECAutoView(bool OnOff);
void SetCECAutoStandby(bool OnOff);
void ShowPicture(const char * fname);
bool ShowPicture(const char * fname);
void StopPicture();
void Standby(bool bOn);
void Pig(int x, int y, int w, int h, int osd_w = 1064, int osd_h = 600);