diff options
Diffstat (limited to 'indra/llcommon/llsys.cpp')
-rw-r--r-- | indra/llcommon/llsys.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/indra/llcommon/llsys.cpp b/indra/llcommon/llsys.cpp index cb91a54f11..36fec973b3 100644 --- a/indra/llcommon/llsys.cpp +++ b/indra/llcommon/llsys.cpp @@ -786,6 +786,7 @@ S32 LLDisplayInfo::getDisplayWidth() const else return 1024; //*FIXME #endif + return 1024; // to make compiler happy } S32 LLDisplayInfo::getDisplayHeight() const @@ -799,7 +800,7 @@ S32 LLDisplayInfo::getDisplayHeight() const #else return 768; //*FIXME #endif - + return 768; // to make compiler happy } |