mirror of
https://github.com/linux-speakup/espeakup.git
synced 2026-08-09 09:19:09 +02:00
Don't check to see if espeakup is running in acsint mode.
This check is important when running with speakup, since there can only be one instance accessing /dev/softsynth. It is unnecessary in acsint mode.
This commit is contained in:
parent
ba316a4cd4
commit
6180ff6e49
1 changed files with 1 additions and 1 deletions
|
|
@ -92,7 +92,7 @@ int main(int argc, char **argv)
|
|||
process_cli(argc, argv);
|
||||
|
||||
/* Is the espeakup daemon running? */
|
||||
if (espeakup_is_running()) {
|
||||
if (espeakup_mode != ESPEAKUP_MODE_ACSINT && espeakup_is_running()) {
|
||||
printf("Espeakup is already running!\n");
|
||||
return 1;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue