diff --git a/doomsday/apps/plugins/importsave/src/importsave.cpp b/doomsday/apps/plugins/importsave/src/importsave.cpp index 9e56b8ff3f..7442331817 100644 --- a/doomsday/apps/plugins/importsave/src/importsave.cpp +++ b/doomsday/apps/plugins/importsave/src/importsave.cpp @@ -32,16 +32,11 @@ using namespace de; static NativePath findSavegameTool() { -#ifdef MACOSX - return App::executablePath().fileNamePath() / "../Resources/savegametool"; - /// @todo fixme: Need to try alternate locations? -#elif WIN32 +#ifdef WIN32 return App::executablePath().fileNamePath() / "savegametool.exe"; -#else // UNIX +#else return App::executablePath().fileNamePath() / "savegametool"; - /// @todo fixme: Need to try alternate locations? #endif - } int SavegameConvertHook(int /*hook_type*/, int /*parm*/, void *data)