Ignore:
Timestamp:
08/23/08 15:07:30 (5 years ago)
Author:
sam
Message:
  • Do not prefix stock image names with "pipi:", it's redundant.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpipi/trunk/pipi/codec.c

    r2695 r2757  
    2929pipi_image_t *pipi_load(char const *name) 
    3030{ 
    31     if(!strncmp(name, "pipi:", 5)) 
    32         return pipi_load_stock(name + 5); 
     31    if(!strncmp(name, "random:", 7) || 
     32       !strncmp(name, "bayer:", 6)) 
     33        return pipi_load_stock(name); 
    3334 
    3435#if USE_IMLIB2 
Note: See TracChangeset for help on using the changeset viewer.