mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-04 16:26:53 +00:00
cd8270f039
Some tests unnecessarily referred to null osystem. Tested with PSP target
12 lines
234 B
C++
12 lines
234 B
C++
#ifndef TEST_NULL_OSYSTEM
|
|
#define TEST_NULL_OSYSTEM 1
|
|
namespace Common {
|
|
#if defined(POSIX) || defined(WIN32)
|
|
void install_null_g_system();
|
|
#define NULL_OSYSTEM_IS_AVAILABLE 1
|
|
#else
|
|
#define NULL_OSYSTEM_IS_AVAILABLE 0
|
|
#endif
|
|
}
|
|
#endif
|