Skip to content
Snippets Groups Projects
Commit 449e64b7 authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Always add right chan for virtual

parent d5db9e5d
No related branches found
No related tags found
No related merge requests found
Pipeline #19034 passed
...@@ -57,7 +57,7 @@ class Camera { ...@@ -57,7 +57,7 @@ class Camera {
/** /**
* Update the available channels. * Update the available channels.
*/ */
void update(const ftl::codecs::Channels<0> &c) { channels_ = c; } void update(const ftl::codecs::Channels<0> &c) { channels_ = (isVirtual()) ? c + ftl::codecs::Channel::Right : c; }
void draw(ftl::rgbd::FrameSet &fs); void draw(ftl::rgbd::FrameSet &fs);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment