Subversion Repositories SvarDOS

Rev

Rev 1290 | Rev 1293 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1290 Rev 1291
Line 312... Line 312...
312
  if (refl != NULL) {
312
  if (refl != NULL) {
313
    for (i = 0; i < refl->num_strings; i++) {
313
    for (i = 0; i < refl->num_strings; i++) {
314
      id = refl->dict[i].id;
314
      id = refl->dict[i].id;
315
      if (!svl_find(l, id)) {
315
      if (!svl_find(l, id)) {
316
        printf("WARNING: %s is missing string %u.%u (pulled from ref lang)\r\n", fname, id >> 8, id & 0xff);
316
        printf("WARNING: %s is missing string %u.%u (pulled from ref lang)\r\n", fname, id >> 8, id & 0xff);
317
        if (!svl_add_str(l, id, ptr)) {
317
        if (!svl_add_str(l, id, refl->strings + refl->dict[i].offset)) {
318
          printf("ERROR: %s[#%u] output size limit exceeded\r\n", fname, linecount);
318
          printf("ERROR: %s[#%u] output size limit exceeded\r\n", fname, linecount);
319
          return 0;
319
          return 0;
320
        }
320
        }
321
      }
321
      }
322
    }
322
    }