Null video driver: Add driver parameter to run until exit

This commit is contained in:
Jonathan G Rennison
2019-10-02 19:15:04 +01:00
parent 170e71787b
commit 33f5e00700
2 changed files with 15 additions and 6 deletions

View File

@@ -17,7 +17,8 @@
/** The null video driver. */
class VideoDriver_Null : public VideoDriver {
private:
uint ticks; ///< Amount of ticks to run.
int ticks; ///< Amount of ticks to run.
bool until_exit;
public:
const char *Start(const char * const *param) override;