We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1697dac commit d208248Copy full SHA for d208248
1 file changed
ffrunner.c
@@ -587,6 +587,13 @@ main(int argc, char **argv)
587
588
enable_dpi_awareness();
589
590
+ char *winePrefix = getenv("WINEPREFIX");
591
+ if (winePrefix) {
592
+ logmsg("WINEPREFIX is set to: %s\n", winePrefix);
593
+ } else {
594
+ logmsg("WINEPREFIX is not set.\n");
595
+ }
596
+
597
if (args.serverAddress == NULL) {
598
logmsg("No server address provided.");
599
exit(1);
0 commit comments