Hydra9268

Results 8 comments of Hydra9268

Can confirm that **lichenbuliren's autoplay fix works for audio**. My code below: ```javascript var player = new Plyr('#player', { controls: [ 'restart', 'play', 'progress', 'mute', 'volume' ]}); player.source = {...

`1>Resource\TiberianDawn.rc(10): fatal error RC1015: cannot open include file 'afxres.h'.` If you don't want to install MFC, you can replace with #include or #include "winres.h" in the TIBERIANDAWN\RESOURCE\TiberianDawn.rc and REDALERT\RESOURCE\RedAlert.rc files....

`error C2338: Windows headers require the default packing option. Changing this can lead to memory corruption. This diagnostic can be disabled by building with WINDOWS_IGNORE_PACKING_MISMATCH defined. (compiling source file win32lib\#######.CPP)`...

The problem is two-fold. First, setting custom structs in the source code is better served with things like pragma pack instead of a universal compile switch that'll screw up other...

Thanks, alex. That's was cool of you to share your fix. :)

You can likely run the remaster through Wine.

Cool beans 😎

> ```python > import os > > os.environ["TORCH_FORCE_WEIGHTS_ONLY_LOAD"] = "1" > ``` I was encountering the same FutureWarning with Real-ESRGAN's `utils.py`. I was able to successfully suppress the warning using...