Forward resources: to rsrc: which the BeOS port already has to use the stuff embedded in the binary. Doesn't seem to be used yet though !?

svn path=/trunk/netsurf/; revision=11836
This commit is contained in:
François Revel 2011-02-27 00:19:23 +00:00
parent 31bd1df6f9
commit 1842be491d

View File

@ -424,7 +424,10 @@ static int32 bapp_thread(void *arg)
char* gui_find_resource(const char *filename)
{
return NULL;
BString u("rsrc:/");
u << filename;
fprintf(stderr, "%s(%s) -> '%s'\n", __FUNCTION__, filename, u.String());
return strdup(u.String());
}
static void gui_init2(int argc, char** argv)