Skip to content

Commit

Permalink
RISCOS: Fix compilation of null backend
Browse files Browse the repository at this point in the history
  • Loading branch information
ccawley2011 authored and David Turner committed Jan 26, 2018
1 parent 8f8eb81 commit f7b4672
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions backends/platform/null/null.cpp
Expand Up @@ -47,6 +47,8 @@
#include "backends/fs/amigaos4/amigaos4-fs-factory.h"
#elif defined(POSIX)
#include "backends/fs/posix/posix-fs-factory.h"
#elif defined(RISCOS)
#include "backends/fs/riscos/riscos-fs-factory.h"
#elif defined(WIN32)
#include "backends/fs/windows/windows-fs-factory.h"
#endif
Expand All @@ -73,6 +75,8 @@ OSystem_NULL::OSystem_NULL() {
_fsFactory = new AmigaOSFilesystemFactory();
#elif defined(POSIX)
_fsFactory = new POSIXFilesystemFactory();
#elif defined(RISCOS)
_fsFactory = new RISCOSFilesystemFactory();
#elif defined(WIN32)
_fsFactory = new WindowsFilesystemFactory();
#else
Expand Down

0 comments on commit f7b4672

Please sign in to comment.