diff options
author | bunnei <bunneidev@gmail.com> | 2015-04-04 21:14:14 +0200 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-04-04 21:14:14 +0200 |
commit | 64196976b91e4202504724d65c1c772e1c542c39 (patch) | |
tree | 153bae22824e049686724c0c4e630e3a71f979e2 /src/core | |
parent | Merge pull request #641 from purpasmart96/service_stubs (diff) | |
parent | Allow the user to set the background clear color during emulation (diff) | |
download | yuzu-64196976b91e4202504724d65c1c772e1c542c39.tar yuzu-64196976b91e4202504724d65c1c772e1c542c39.tar.gz yuzu-64196976b91e4202504724d65c1c772e1c542c39.tar.bz2 yuzu-64196976b91e4202504724d65c1c772e1c542c39.tar.lz yuzu-64196976b91e4202504724d65c1c772e1c542c39.tar.xz yuzu-64196976b91e4202504724d65c1c772e1c542c39.tar.zst yuzu-64196976b91e4202504724d65c1c772e1c542c39.zip |
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 { // System Region int region_value; + // Renderer + float bg_red; + float bg_green; + float bg_blue; + std::string log_filter; } extern values; |