summaryrefslogtreecommitdiff
path: root/vfs/UVFSCore.pas
diff options
context:
space:
mode:
Diffstat (limited to 'vfs/UVFSCore.pas')
-rw-r--r--vfs/UVFSCore.pas8
1 files changed, 8 insertions, 0 deletions
diff --git a/vfs/UVFSCore.pas b/vfs/UVFSCore.pas
index 6cd1114..aaa3b49 100644
--- a/vfs/UVFSCore.pas
+++ b/vfs/UVFSCore.pas
@@ -170,6 +170,9 @@ const ConstGlobalModulePath1 = '/usr/lib/tuxcmd';
ConstLocalModulePath1 = '~/.tuxcmd/plugins';
ConstLocalModulePath2 = './plugins';
ConstLocalModulePath3 = '../lib/tuxcmd';
+ ConstGlobalModulePath3 = '/usr/lib64/tuxcmd';
+ ConstGlobalModulePath4 = '/usr/local/lib64/tuxcmd';
+ ConstLocalModulePath4 = '../lib64/tuxcmd';
ConstVFSVersionRequired = cVFSVersion;
@@ -1090,6 +1093,11 @@ begin
QueryModules(ConstLocalModulePath1);
QueryModules(ConstLocalModulePath2);
QueryModules(ConstLocalModulePath3);
+{$IFDEF CPU64}
+ QueryModules(ConstGlobalModulePath3);
+ QueryModules(ConstGlobalModulePath4);
+ QueryModules(ConstLocalModulePath4);
+{$ENDIF}
end;
end;