mirror of
https://github.com/YGGverse/Yoda.git
synced 2026-04-01 17:15:28 +00:00
add window full screen support
This commit is contained in:
parent
2e35fd120a
commit
07e781d357
2 changed files with 20 additions and 12 deletions
|
|
@ -42,7 +42,7 @@ namespace app
|
|||
TIME,
|
||||
WIDTH,
|
||||
HEIGHT,
|
||||
IS_FULL_SCREEN
|
||||
IS_FULLSCREEN
|
||||
}; // table fields index
|
||||
|
||||
static int init(
|
||||
|
|
@ -57,7 +57,7 @@ namespace app
|
|||
sqlite3 * db,
|
||||
const int & WIDTH,
|
||||
const int & HEIGHT,
|
||||
const bool & IS_FULL_SCREEN
|
||||
const bool & IS_FULLSCREEN
|
||||
); // return sqlite3_last_insert_rowid
|
||||
};
|
||||
};
|
||||
|
|
@ -77,6 +77,7 @@ namespace app
|
|||
// Defaults
|
||||
const int WIDTH = 640;
|
||||
const int HEIGHT = 480;
|
||||
const bool IS_FULLSCREEN = false;
|
||||
|
||||
/*
|
||||
* Browser class API
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue