Update README with ref to Dev Diary 11 blog post

This commit is contained in:
Joshua Strobl 2021-08-12 14:38:35 +03:00
parent 77b4e900e6
commit 22d5bcc777
2 changed files with 3 additions and 2 deletions

View file

@ -6,7 +6,8 @@ Koto is an in-development audiobook, music, and podcast manager that is designed
## Blog
- [Dev Diary 10: Koto June Progress Report](https://joshuastrobl.com/2021/07/08/dev-diary-10-koto-june-progress-report)
- [Dev Diary 11: Koto July Progress Report](https://joshuastrobl.com/2021/08/08/dev-diary-11-koto-july-progress-report/)
- [Dev Diary 10: Koto June Progress Report](https://joshuastrobl.com/2021/07/08/dev-diary-10-koto-june-progress-report/)
- [Dev Diary 9: Koto May Progress Report (B-side)](https://joshuastrobl.com/2021/06/10/dev-diary-9-koto-may-progress-report-b-side/)
- [Dev Diary 8: Koto May Progress Report (A-side)](https://joshuastrobl.com/2021/05/27/dev-diary-8-koto-may-progress-report-a-side/)
- [Dev Diary 7: Koto April Progress Report (B-side)](https://joshuastrobl.com/2021/05/07/dev-diary-7-koto-april-progress-report-b-side/)

View file

@ -402,7 +402,7 @@ gdouble koto_playback_engine_get_progress(KotoPlaybackEngine * self) {
return 0.0;
}
progress = gstprog / GST_SECOND; // Devide by NS to get seconds
progress = gstprog / GST_SECOND; // Divide by GST_SECOND
}
return progress;