Use native_arch for railgun sizes

bug/bundler_fix
Spencer McIntyre 2017-02-26 14:42:55 -05:00
parent 3b2e5e0785
commit 0ebd51d224
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ class DLL
def process_function_call(function, args, client)
raise "#{function.params.length} arguments expected. #{args.length} arguments provided." unless args.length == function.params.length
if client.arch == ARCH_X64
if client.native_arch == ARCH_X64
native = 'Q<'
else
native = 'V'