mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-09 22:38:06 -05:00
dont build sabl if unable to find sound files
This commit is contained in:
@ -222,7 +222,12 @@ public:
|
|||||||
|
|
||||||
bool Write() override
|
bool Write() override
|
||||||
{
|
{
|
||||||
WriteEntries();
|
if (!WriteEntries())
|
||||||
|
{
|
||||||
|
std::cerr << "An error occurred writing the sound bank entires. Please check output." << std::endl;
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
WriteEntryList();
|
WriteEntryList();
|
||||||
WriteChecksumList();
|
WriteChecksumList();
|
||||||
WriteBranding();
|
WriteBranding();
|
||||||
|
Reference in New Issue
Block a user