Skip to content
chrilith edited this page May 4, 2020 · 13 revisions

The window capture feature doesn't seem to work?

This problem seems to be related to the new Windows 10 mode using the fullscreen optimization feature. According to the DirectX Developer Blog "Fullscreen Exclusive mode gives your game complete ownership of the display and allocation of resources of your graphics card. In windowed game mode, the game is deployed in a bordered window which allows other applications and windows to continue running in the background".

You should be able to disable it in your game with the following procedure:

  • Right click on the executable to configure
  • Go to "Properties"
  • Select "Compatibility" tab
  • Check "Disable fullscreen optimizations"
  • Then "Apply"

How to make the new DLL work with my old Lua code using this module?

You must use the legacy version of de DLL. This version will give you access to both new and old method names.

The module doesn't seem to work with my Saitek hardware?

There is a known problem with the latest Saitek drivers and their DirectOuput service. This problem occur only on 64-bit systems when using the 32-bit version of the module. To fix this problem, you must install a driver v7.0.39.0 or lower. You can also check the possible workaround.

How can I fix the "module cannot be find" error loading a module from Lua?

This error may occur if a dependency is missing. If this error is linked to the Passerelle module, it is because the VC2015 Redistribuable package is missing on your computer. Simply install both 32-bit and 64-bit versions of the package.

Back to Contents