mirror of https://github.com/wayvr-org/wayvr.git
fix build
This commit is contained in:
parent
4652f708b0
commit
447d75acef
|
|
@ -553,7 +553,7 @@ impl<T: 'static> Frontend<T> {
|
|||
}
|
||||
|
||||
fn action_recenter_playspace(&mut self, data: &mut T) -> anyhow::Result<()> {
|
||||
self.interface.playspace(data, DashPlayspaceTask::Recenter)?;
|
||||
self.interface.playspace_task(data, DashPlayspaceTask::Recenter)?;
|
||||
Ok(())
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -201,7 +201,7 @@ impl<T> Tab<T> for TabSettings<T> {
|
|||
std::fs::create_dir(&path)?;
|
||||
}
|
||||
Task::ResetPlayspace => {
|
||||
frontend.interface.playspace(data, DashPlayspaceTask::Reset)?;
|
||||
frontend.interface.playspace_task(data, DashPlayspaceTask::Reset)?;
|
||||
return Ok(());
|
||||
}
|
||||
Task::RestartSoftware => {
|
||||
|
|
|
|||
|
|
@ -217,7 +217,7 @@ impl DashInterface<()> for DashInterfaceEmulated {
|
|||
}
|
||||
}
|
||||
|
||||
fn playspace(&mut self, _: &mut (), _: DashPlayspaceTask) -> anyhow::Result<()> {
|
||||
fn playspace_task(&mut self, _: &mut (), _: DashPlayspaceTask) -> anyhow::Result<()> {
|
||||
// stub!
|
||||
Ok(())
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue