Skip to content

Commit 4ddebb9

Browse files
committed
Fix error on other than linux
1 parent 52740b1 commit 4ddebb9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/logic/play.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ pub(crate) fn play_vn(path: &PathBuf) -> Result<()> {
3333
.spawn()
3434
{
3535
Ok(_) => Ok(()),
36-
Err(_) => Err(AppError::VnPlayError.into()),
36+
Err(_) => Err(AppError::PlayError.into()),
3737
}
3838
}
3939

0 commit comments

Comments
 (0)