This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
jeuxvideo:s:shadowmanremastered [2021/04/23 11:58] – created yahiko | jeuxvideo:s:shadowmanremastered [2024/10/09 15:34] (current) – yahiko | ||
---|---|---|---|
Line 22: | Line 22: | ||
Taper la commande suivante pour récupérer l'ID du processus thoth_x64.exe (PID) | Taper la commande suivante pour récupérer l'ID du processus thoth_x64.exe (PID) | ||
- | <codedoc | + | <code batch> |
tasklist | find " | tasklist | find " | ||
- | </codedoc> | + | </code> |
Lancer l' | Lancer l' | ||
- | <codedoc | + | <code batch> |
C: | C: | ||
- | </codedoc> | + | </code> |
Le jeu devrait se charger correctement. J'ai toutefois remarqué de petites saccades, peut-être dues à l' | Le jeu devrait se charger correctement. J'ai toutefois remarqué de petites saccades, peut-être dues à l' | ||
Line 36: | Line 36: | ||
Il s' | Il s' | ||
- | C'est sale mais ça fonctionne. | + | C'est sale mais ça fonctionne. Reste à espérer que Nightdive ponde un vrai patch. |
- | <codedoc | + | <code batch> |
@ECHO OFF | @ECHO OFF | ||
COLOR 70 | COLOR 70 | ||
Line 45: | Line 45: | ||
REM Steam install folder | REM Steam install folder | ||
SET steam_folder=" | SET steam_folder=" | ||
+ | |||
REM Intel Emulator folder | REM Intel Emulator folder | ||
SET sde_folder=C: | SET sde_folder=C: | ||
Line 60: | Line 61: | ||
REM Find the process ID | REM Find the process ID | ||
REM https:// | REM https:// | ||
+ | |||
FOR /F %%T IN ('Wmic process where^(Name^=" | FOR /F %%T IN ('Wmic process where^(Name^=" | ||
SET /A pid=%%T) &GOTO StartSDE | SET /A pid=%%T) &GOTO StartSDE | ||
:StartSDE | :StartSDE | ||
- | REM Attach the process to Instel | + | REM Attach the process to Intel SDK Emulator thing |
START %sde_folder%\sde.exe -attach-pid %pid% | START %sde_folder%\sde.exe -attach-pid %pid% | ||
- | </codedoc> | + | </code> |