SFall source code.

I'm trying to compile F2 RPU source code (Release config) but I'm getting following error:
Code:
DebugEditor.cpp(541,5): error C7553: inline assembler is not supported in a lambda
inside:
Code:
...
OnKeyPressed() += [](DWORD scanCode, bool pressed) {
            if (scanCode == mapGridToggleKey && pressed && IsGameLoaded()) {
                __asm call fo::funcoffs::grid_toggle_; //the error line!
                fo::func::tile_refresh_display();
            }
        };
...

I'm using MS Visual C++ 2019 on Win 10 if it matter.
Help!
 
Last edited:
Back
Top