summaryrefslogtreecommitdiff
path: root/src/qcommon
diff options
context:
space:
mode:
author/dev/humancontroller <devhc@example.com>2015-06-18 14:18:03 +0200
committer/dev/humancontroller <devhc@example.com>2017-02-07 17:34:59 +0100
commitbea348d828fee2675edc5cfc9b18ad000a96a6ac (patch)
treec8ae11fc1e9150a097d5f6e2aab4baf099e23942 /src/qcommon
parent7190d27a586ee1a4be4a550833f5ec91fca5402e (diff)
stop embedding the architecture in the filenames of binaries and libraries; change the library loader appropriately
Diffstat (limited to 'src/qcommon')
-rw-r--r--src/qcommon/files.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/qcommon/files.c b/src/qcommon/files.c
index 5ab6e980..856ea285 100644
--- a/src/qcommon/files.c
+++ b/src/qcommon/files.c
@@ -1378,7 +1378,7 @@ int FS_FindVM(void **startSearch, char *found, int foundlen, const char *name, i
Com_Error(ERR_FATAL, "Filesystem call made without initialization");
if(enableDll)
- Com_sprintf(dllName, sizeof(dllName), "%s" ARCH_STRING DLL_EXT, name);
+ Com_sprintf(dllName, sizeof(dllName), "%s" DLL_EXT, name);
Com_sprintf(qvmName, sizeof(qvmName), "vm/%s.qvm", name);