linux compilation fix (introduce in r5306)

git-svn-id: http://pcsx2.googlecode.com/svn/trunk@5319 96395faa-99c1-11dd-bbfe-3dabce05a288
This commit is contained in:
gregory.hainaut 2012-06-20 18:00:08 +00:00
parent 48284746d6
commit 35d381cd11
6 changed files with 6 additions and 6 deletions
plugins
CDVDnull
FWnull
GSnull
PadNull
USBnull
dev9null

View File

@ -31,7 +31,7 @@ EXPORT_C_(char*) PS2EgetLibName()
#ifdef _MSC_VER
sprintf_s( libraryName, "CDVDnull Driver r%d%s",SVN_REV, SVN_MODS ? "m" : "");
return libraryName;
#elif
#else
return "CDVDnull Driver";
#endif
}

View File

@ -68,7 +68,7 @@ EXPORT_C_(char*) PS2EgetLibName()
#ifdef _MSC_VER
sprintf_s( libraryName, "FWnull Driver r%d%s",SVN_REV, SVN_MODS ? "m" : "");
return libraryName;
#elif
#else
return "FWnull Driver";
#endif
}

View File

@ -66,7 +66,7 @@ EXPORT_C_(char*) PS2EgetLibName()
#ifdef _MSC_VER
sprintf_s( libraryName, "GSnull Driver r%d%s",SVN_REV, SVN_MODS ? "m" : "");
return libraryName;
#elif
#else
return "GSnull Driver";
#endif
}

View File

@ -46,7 +46,7 @@ EXPORT_C_(char*) PS2EgetLibName()
#ifdef _MSC_VER
sprintf_s( libraryName, "Padnull Driver r%d%s",SVN_REV, SVN_MODS ? "m" : "");
return libraryName;
#elif
#else
return "Padnull Driver";
#endif

View File

@ -62,7 +62,7 @@ EXPORT_C_(char*) PS2EgetLibName()
#ifdef _MSC_VER
sprintf_s( libraryName, "USBnull Driver r%d%s",SVN_REV, SVN_MODS ? "m" : "");
return libraryName;
#elif
#else
return "USBnull Driver";
#endif
}

View File

@ -79,7 +79,7 @@ EXPORT_C_(char*) PS2EgetLibName()
#ifdef _MSC_VER
sprintf_s( libraryName, "DEV9null Driver r%d%s",SVN_REV, SVN_MODS ? "m" : "");
return libraryName;
#elif
#else
return "DEV9null Driver";
#endif
}