rnd-20140818-1-src
[rocksndiamonds.git] / src / init.c
index fec8cc2d28893eff8ddb75f9035b3efa7f5298b4..0dc30c653d58cb24389d2824db335b13d14322aa 100644 (file)
@@ -5209,15 +5209,11 @@ void Execute_Command(char *command)
   }
   else if (strPrefix(command, "create images "))
   {
-#if defined(TARGET_SDL)
     global.create_images_dir = getStringCopy(&command[14]);
 
     if (access(global.create_images_dir, W_OK) != 0)
       Error(ERR_EXIT, "image target directory '%s' not found or not writable",
            global.create_images_dir);
-#else
-    Error(ERR_EXIT, "command only available for SDL target");
-#endif
   }
 
 #if DEBUG