Kodi Community Forum

Full Version: Found a one line bug fix for EDL issues
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I have a very simple one line fix for one of the issues reported here: http://trac.xbmc.org/ticket/6806. How do I go about submitting this fix?

Basically all that needs to be done is change line 1863 of the DVDPlayer.cpp file from:

seek += GetTime();

to:

seek += GetTime() + m_Edl.TotalCutTime();

This is from SVN 21183.

Thanks,
Harry

P.S. I added this to the ticket mentioned above, but I'm just wondering if there's anything else that needs to be done to submit this bug fix.