diff options
| author | 2015-04-03 15:35:51 -0700 | |
|---|---|---|
| committer | 2015-04-03 15:35:51 -0700 | |
| commit | cae89fb315afb4dfd83d9e33298505a58ecb7a08 (patch) | |
| tree | e43cb6ae2f690b81e825f0b7dcc9fc7f1433fbc3 /src/core | |
| parent | Merge pull request #677 from lioncash/cp15 (diff) | |
| download | yuzu-cae89fb315afb4dfd83d9e33298505a58ecb7a08.tar.gz yuzu-cae89fb315afb4dfd83d9e33298505a58ecb7a08.tar.xz yuzu-cae89fb315afb4dfd83d9e33298505a58ecb7a08.zip | |
Allow the user to set the background clear color during emulation
The background color can be seen at the sides of the bottom screen or when the window is wider than normal.
Diffstat (limited to 'src/core')
| -rw-r--r-- | src/core/settings.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/settings.h b/src/core/settings.h index 870eea958..0f4700241 100644 --- a/src/core/settings.h +++ b/src/core/settings.h | |||
| @@ -44,6 +44,11 @@ struct Values { | |||
| 44 | // System Region | 44 | // System Region |
| 45 | int region_value; | 45 | int region_value; |
| 46 | 46 | ||
| 47 | // Renderer | ||
| 48 | float bg_red; | ||
| 49 | float bg_green; | ||
| 50 | float bg_blue; | ||
| 51 | |||
| 47 | std::string log_filter; | 52 | std::string log_filter; |
| 48 | } extern values; | 53 | } extern values; |
| 49 | 54 | ||