summaryrefslogtreecommitdiff
path: root/apps/plugins/doom/rockdoom.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/doom/rockdoom.c')
-rw-r--r--apps/plugins/doom/rockdoom.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/doom/rockdoom.c b/apps/plugins/doom/rockdoom.c
index 26afdd93db..042212812a 100644
--- a/apps/plugins/doom/rockdoom.c
+++ b/apps/plugins/doom/rockdoom.c
@@ -62,7 +62,7 @@ int fileexists(const char * fname)
62 return -1; 62 return -1;
63} 63}
64 64
65#ifndef SIMULATOR 65#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
66int my_open(const char *file, int flags, ...) 66int my_open(const char *file, int flags, ...)
67{ 67{
68 if(fpoint==8) 68 if(fpoint==8)
@@ -111,7 +111,7 @@ int my_close(int id)
111 111
112bool noprintf=0; // Variable disables printf lcd updates to protect grayscale lib/direct lcd updates 112bool noprintf=0; // Variable disables printf lcd updates to protect grayscale lib/direct lcd updates
113 113
114#ifndef SIMULATOR 114#if (CONFIG_PLATFORM & PLATFORM_NATIVE)
115// Here is a hacked up printf command to get the output from the game. 115// Here is a hacked up printf command to get the output from the game.
116int printf(const char *fmt, ...) 116int printf(const char *fmt, ...)
117{ 117{
@@ -751,7 +751,7 @@ enum plugin_status plugin_start(const void* parameter)
751 printf("There were still: %d files open\n", fpoint); 751 printf("There were still: %d files open\n", fpoint);
752 while(fpoint>0) 752 while(fpoint>0)
753 { 753 {
754#ifdef SIMULATOR 754#if (CONFIG_PLATFORM & PLATFORM_HOSTED)
755 close(filearray[fpoint]); 755 close(filearray[fpoint]);
756#else 756#else
757 rb->close(filearray[fpoint]); 757 rb->close(filearray[fpoint]);