fixed new libnix call style

This commit is contained in:
Christian Vogelgsang 2019-06-07 21:19:40 +02:00
parent aee09a4f33
commit d3fa4b540b

View File

@ -19,7 +19,8 @@ int __UserLibInit(struct Library *myLib)
myLibPtr = myLib;
SysBase = *(struct ExecBase **)4L;
return (DOSBase=(struct DosLibrary *)OpenLibrary("dos.library",33L))!=NULL;
DOSBase=(struct DosLibrary *)OpenLibrary("dos.library",33L);
return DOSBase==NULL;
}
void __UserLibCleanup(void)