Added engine support for Blade Symphony (bug 5949, r=asherkin).

This commit is contained in:
Nicholas Hastings
2013-10-13 14:15:29 -04:00
parent 3e15966c3e
commit 5e1d207eae
5 changed files with 24 additions and 8 deletions
+6
View File
@@ -84,6 +84,7 @@
#define FILENAME_1_6_TF2 "sourcemod.2.tf2" PLATFORM_EXT
#define FILENAME_1_6_ND "sourcemod.2.nd" PLATFORM_EXT
#define FILENAME_1_6_DOTA "sourcemod.2.dota" PLATFORM_EXT
#define FILENAME_1_6_BLADE "sourcemod.2.blade" PLATFORM_EXT
HINSTANCE g_hCore = NULL;
bool load_attempted = false;
@@ -334,6 +335,11 @@ DLL_EXPORT METAMOD_PLUGIN *CreateInterface_MMS(const MetamodVersionInfo *mvi, co
filename = FILENAME_1_6_DOTA;
break;
}
case SOURCE_ENGINE_BLADE:
{
filename = FILENAME_1_6_BLADE;
break;
}
default:
{
return NULL;