Remove the USING_XCODE preprocessor variable that became useless

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11909 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Manolo Gouy 2016-08-31 16:12:28 +00:00
parent 09aa05ef3f
commit 4d55e204f8
1 changed files with 2 additions and 5 deletions

View File

@ -154,12 +154,9 @@ int main(int argc, char **argv) {
char buf[2048];
strcpy(buf, argv[0]);
char *slash = strrchr(buf, '/');
if (slash)
#if defined(USING_XCODE)
strcpy(slash, "/../Resources/browser.cxx");
#else
if (slash) {
strcpy(slash, "/../../../browser.cxx");
#endif
}
done = browser->load(buf);
}
#endif