aboutsummarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLiviu Cristian Mirea Ghiban2019-02-04 19:35:27 +0200
committerLiviu Cristian Mirea Ghiban2019-02-04 19:35:27 +0200
commit0ffeac710aa3ad63f5c93bff7b31787f12991c11 (patch)
treefa815b5f01fc941269c9d0df7b32e5b3728accfb
parent08d24aa7cb9cfe1256d649fbe806f1b5f6953777 (diff)
downloadaur-0ffeac710aa3ad63f5c93bff7b31787f12991c11.tar.gz
Fix potential issue with Direct2D, see https://github.com/HeidiSQL/HeidiSQL/issues/83
-rwxr-xr-xheidisql.sh6
1 files changed, 3 insertions, 3 deletions
diff --git a/heidisql.sh b/heidisql.sh
index 9979954c5943..552008d2ebd3 100755
--- a/heidisql.sh
+++ b/heidisql.sh
@@ -28,7 +28,7 @@ fi
# If default wineprefix defined - run from it
if [ -n "$WINEPREFIX" ]; then
- WINEDEBUG=-all WINEPREFIX="$WINEPREFIX" wine "$progHome/$progBin" "$@"
+ WINEDEBUG=-all WINEPREFIX="$WINEPREFIX" WINEDLLOVERRIDES="d2d1=n" wine "$progHome/$progBin" "$@"
else
- WINEDEBUG=-all wine "$progHome/$progBin" "$@"
-fi \ No newline at end of file
+ WINEDEBUG=-all WINEDLLOVERRIDES="d2d1=n" wine "$progHome/$progBin" "$@"
+fi