From 1369629972f1ad06d3b95ebc29c24ec88763028e Mon Sep 17 00:00:00 2001 From: Christian Kellner Date: Mon, 2 Jul 2018 14:14:47 +0200 Subject: [PATCH] README.md: use version library in examples Now that versioned libraries are created, use that in the examples provided. --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e9c326d..6de0117 100644 --- a/README.md +++ b/README.md @@ -57,13 +57,13 @@ This will also satisfy the build requirement `inih` by pulling it in as a git su ## Requesting GameMode ### Users -After installing `libgamemodeauto.so` simply preload it into the game: +After installing `libgamemodeauto.so.0` simply preload it into the game: ```bash -LD_PRELOAD=/usr/\$LIB/libgamemodeauto.so ./game +LD_PRELOAD=/usr/\$LIB/libgamemodeauto.so.0 ./game ``` Or edit the steam launch options: ```bash -LD_PRELOAD=$LD_PRELOAD:/usr/\$LIB/libgamemodeauto.so %command% +LD_PRELOAD=$LD_PRELOAD:/usr/\$LIB/libgamemodeauto.so.0 %command% ``` Please note the backslash here in `\$LIB` is required.