Reenabled module and fixed missing const

This commit is contained in:
Bastiaan Olij 2018-07-27 18:43:50 +10:00
parent 4487c27f7b
commit 03d02e88fc
4 changed files with 6 additions and 7 deletions

View file

@ -1,6 +1,5 @@
def can_build(env, platform):
# should probably change this to only be true on iOS and Android
return False
return True
def configure(env):
pass

View file

@ -28,7 +28,7 @@
/* SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
/*************************************************************************/
#include "mobile_interface.h"
#include "mobile_vr_interface.h"
#include "core/os/input.h"
#include "core/os/os.h"
#include "servers/visual/visual_server_global.h"
@ -279,7 +279,7 @@ bool MobileVRInterface::is_stereo() {
return true;
};
bool MobileVRInterface::is_initialized() {
bool MobileVRInterface::is_initialized() const {
return (initialized);
};

View file

@ -134,7 +134,7 @@ public:
virtual StringName get_name() const;
virtual int get_capabilities() const;
virtual bool is_initialized();
virtual bool is_initialized() const;
virtual bool initialize();
virtual void uninitialize();
@ -150,4 +150,4 @@ public:
~MobileVRInterface();
};
#endif // MOBILE_VR_INTERFACE_H
#endif // !MOBILE_VR_INTERFACE_H

View file

@ -30,7 +30,7 @@
#include "register_types.h"
#include "mobile_interface.h"
#include "mobile_vr_interface.h"
void register_mobile_vr_types() {
ClassDB::register_class<MobileVRInterface>();