mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 21:32:45 +00:00
Whoops
This commit is contained in:
parent
67b180d63d
commit
9fbf3b9732
@ -1050,7 +1050,7 @@ static bool accessibility_speak_windows(int speed,
|
||||
{
|
||||
|
||||
nbytes_cmd = snprintf(NULL, 0,
|
||||
"powershell.exe -NoProfile -WindowStyle Hidden -Command \"Add-Type -AssemblyName System.Speech; $synth = New-Object System.Speech.Synthesis.SpeechSynthesizer; $synth.Rate = %s; $synth.Speak(\\\"%s\\\");\"", speeds[speed-1], (char*) speak_text);
|
||||
"powershell.exe -NoProfile -WindowStyle Hidden -Command \"Add-Type -AssemblyName System.Speech; $synth = New-Object System.Speech.Synthesis.SpeechSynthesizer; $synth.Rate = %s; $synth.Speak(\\\"%s\\\");\"", speeds[speed-1], (char*) speak_text) + 1;
|
||||
cmd = malloc(nbytes_cmd);
|
||||
snprintf(cmd, nbytes_cmd,
|
||||
"powershell.exe -NoProfile -WindowStyle Hidden -Command \"Add-Type -AssemblyName System.Speech; $synth = New-Object System.Speech.Synthesis.SpeechSynthesizer; $synth.Rate = %s; $synth.Speak(\\\"%s\\\");\"", speeds[speed-1], (char*) speak_text);
|
||||
|
Loading…
x
Reference in New Issue
Block a user