ValleyBell / libvgm

A more modular rewrite of most components from VGMPlay. will include sub-libraries for audio output, sound emulation and VGM playback
irc://irc.digibase.ca/#vgmrips
136 stars 33 forks source link

Don't call DataLoader_CancelLoading before DataLoader_Deinit in examples #85

Closed nyanpasu64 closed 2 years ago

nyanpasu64 commented 2 years ago

DataLoader_Deinit now calls DataLoader_Reset, which calls DataLoader_CancelLoading. So calling DataLoader_CancelLoading before DataLoader_Deinit is redundant. So remove the call to DataLoader_CancelLoading in the example apps, to simplify the code.

(Hopefully this change is correct.)