1
0
mirror of https://github.com/XProger/OpenLara.git synced 2025-08-17 18:36:43 +02:00

#15 fix graphics settings

This commit is contained in:
XProger
2017-07-30 09:13:30 +03:00
parent 5d1d03f421
commit 40a218f855
2 changed files with 12 additions and 7 deletions

View File

@@ -19,12 +19,17 @@ namespace Game {
void init(Stream *lvl, Stream *snd) {
Core::init();
Core::settings.detail.ambient = false;
Core::settings.detail.ambient = true;
Core::settings.detail.lighting = true;
Core::settings.detail.shadows = false;
Core::settings.detail.shadows = true;
Core::settings.detail.water = Core::support.texFloat || Core::support.texHalf;
Core::settings.detail.contact = false;
#ifdef __RPI__
Core::settings.detail.ambient = false;
Core::settings.detail.shadows = false;
#endif
Core::settings.controls.retarget = true;
level = NULL;