MORPHOS: MorphOS Support
This commit is contained in:
parent
54775a3de9
commit
438b6a042c
1 changed files with 4 additions and 0 deletions
|
@ -55,6 +55,8 @@
|
|||
*/
|
||||
#if defined(__amigaos4__)
|
||||
#include "backends/fs/amigaos4/amigaos4-fs-factory.h"
|
||||
#elif defined(__MORPHOS__)
|
||||
#include "backends/fs/morphos/morphos-fs-factory.h"
|
||||
#elif defined(POSIX)
|
||||
#include "backends/fs/posix/posix-fs-factory.h"
|
||||
#elif defined(RISCOS)
|
||||
|
@ -90,6 +92,8 @@ private:
|
|||
OSystem_NULL::OSystem_NULL() {
|
||||
#if defined(__amigaos4__)
|
||||
_fsFactory = new AmigaOSFilesystemFactory();
|
||||
#elif defined(__MORPHOS__)
|
||||
_fsFactory = new MorphOSFilesystemFactory();
|
||||
#elif defined(POSIX)
|
||||
_fsFactory = new POSIXFilesystemFactory();
|
||||
#elif defined(RISCOS)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue