forked from cory/tildefriends
Fixed apps not working most of the time. Ultimately, storing a pointer to the database using JS_NewInt64 was lossy and a bad idea. Also, remove use of JNI since we're only starting tildefriends as its own process now.
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@4215 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
@ -352,7 +352,7 @@ void tf_ssb_import_from_zip(tf_ssb_t* ssb, const char* zip_path, const char* use
|
||||
unzFile zip = unzOpen(zip_path);
|
||||
if (zip)
|
||||
{
|
||||
tf_printf("Importing from %s.", zip_path);
|
||||
tf_printf("Importing from %s.\n", zip_path);
|
||||
if (unzGoToFirstFile(zip) == UNZ_OK)
|
||||
{
|
||||
while (unzGoToNextFile(zip) == UNZ_OK)
|
||||
|
Reference in New Issue
Block a user