File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ void OpenXRApi::openxr_release_api() {
73
73
// decrease use count
74
74
singleton->use_count --;
75
75
76
- Godot::print (" OpenXR: decreased use count to %i " , singleton->use_count );
76
+ Godot::print (" OpenXR: decreased use count to {0} " , singleton->use_count );
77
77
} else {
78
78
// cleanup openxr
79
79
Godot::print (" OpenXR releasing OpenXR context" );
@@ -87,7 +87,7 @@ OpenXRApi *OpenXRApi::openxr_get_api() {
87
87
if (singleton != NULL ) {
88
88
// increase use count
89
89
singleton->use_count ++;
90
- Godot::print (" OpenXR increased use count to %i " , singleton->use_count );
90
+ Godot::print (" OpenXR increased use count to {0} " , singleton->use_count );
91
91
} else {
92
92
// init openxr
93
93
Godot::print (" OpenXR initialising OpenXR context" );
@@ -774,7 +774,7 @@ OpenXRApi::OpenXRApi() {
774
774
}
775
775
776
776
actions[MENU_ACTION_INDEX] = createAction (XR_ACTION_TYPE_BOOLEAN_INPUT, " menu" , " Menu Button" );
777
- if (actions[GRAB_ACTION_INDEX ] == NULL ) {
777
+ if (actions[MENU_ACTION_INDEX ] == NULL ) {
778
778
return ;
779
779
}
780
780
You can’t perform that action at this time.
0 commit comments