1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2025-07-02 22:14:37 +00:00

very slightly more verbose loading

This commit is contained in:
fgenesis 2023-06-01 12:59:07 +02:00
parent 263bff3659
commit d740aa06e1
2 changed files with 10 additions and 0 deletions

View file

@ -20,6 +20,7 @@ Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include "StringBank.h"
#include "ttvfs_stdio.h"
#include "Base.h"
StringBank stringbank;
static const std::string emptyStr;
@ -40,6 +41,7 @@ bool StringBank::empty() const
bool StringBank::load(const std::string &file)
{
debugLog("Load stringbank: " + file);
InStream in(file.c_str());
if(!in)
return false;