RupertAvery / PSXPackager

A utility to convert Playstation disc images in various formats to PBP format and back
Other
240 stars 15 forks source link

Fix return values of functions having cancel request #43

Closed takano32 closed 1 year ago

takano32 commented 1 year ago

The style of processing functions is to return true on success, but some functions return true on cancellation and false when there is no cancellation, which is the opposite of the overall style.

This fix returns false when a cancellation is made and true when no cancellation is made.

RupertAvery commented 1 year ago

Thanks!