bah, forgot the important part of that fix :P

This commit is contained in:
Bill Currie 2005-06-15 02:03:50 +00:00
parent 6e0c70cac7
commit 91d6607793

View file

@ -280,7 +280,7 @@ PLItem read_plist (void)
file = QFS_OpenFile ("menu.plist"); file = QFS_OpenFile ("menu.plist");
plist_data = str_new (); plist_data = str_new ();
while ((l = Qgetline (file))) while ((l = Qgetline (file)))
plist_data += l; str_cat (plist_data, l);
Qclose (file); Qclose (file);
plist = [PLItem newFromString:plist_data]; plist = [PLItem newFromString:plist_data];
str_free (plist_data); str_free (plist_data);