From c4e260341f89e6d9349d57ca481ec7738158231a Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Wed, 7 Apr 2021 02:33:08 +0200 Subject: [PATCH] ray:: raycaster_state now based on cgi_string, not geometry --- raycaster.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/raycaster.cpp b/raycaster.cpp index c564f5ef..1bad3a06 100644 --- a/raycaster.cpp +++ b/raycaster.cpp @@ -242,14 +242,14 @@ tuple< #if CAP_VR int, vrhr::eEyes, #endif - eGeometry + string > raycaster_state() { return make_tuple( #if CAP_VR vrhr::state, vrhr::eyes, #endif - geometry + cgi_string() ); }