itch.iohttp://itch.iohttps://itch.io/t/1385335/linux-version-is-x86-onlyLinux version is x86 only.https://itch.io/t/1385335/linux-version-is-x86-onlyThu, 13 May 2021 13:26:13 GMTThu, 13 May 2021 13:26:13 GMTThu, 13 May 2021 13:26:13 GMTWhen downloading the Linux demo, there is only an x86 executable available. If you look on Steam's hardware survey you'll see that almost every Linux gamer is using 64 bit already.

However, you could always just include an x86_64 and a x86 build if you wanted too.

Personally I would do the following:

* Include both an x86 and x86_64 binary.
* Include a shell script (called something like "play-watch1.sh" that does the following:


#!/bin/bash

ARCH=$(uname -m)

case $ARCH in

    x86_64)

        chmod +x ./WATCH1.x86_64

        ./WATCH1.x86_64

        ;;

    

    i386 | i686)

        chmod +x ./WATCH1.x86

        ./WATCH1.x86

        ;;

    *)

        echo "This game is not able to run on your platform."

        ;;

esac

It seems you guys don't have any Linux testers, so if you need any other help hit me up.

]]>
https://itch.io/t/3223410/voice-overlap-when-replaying-mutiple-voices-at-onceVoice overlap when replaying mutiple voices at oncehttps://itch.io/t/3223410/voice-overlap-when-replaying-mutiple-voices-at-onceWed, 18 Oct 2023 22:52:44 GMTWed, 18 Oct 2023 22:52:44 GMTWed, 18 Oct 2023 22:52:44 GMTRepro:

  • open log after multiple voiced lines
  • click on VOICE to replay first voice
  • chain click on another VOICE to replay a second voice => voices will overlap
]]>
https://itch.io/t/3223238/fade-in-fade-out-bugsFade in / fade out bugshttps://itch.io/t/3223238/fade-in-fade-out-bugsWed, 18 Oct 2023 21:12:59 GMTWed, 18 Oct 2023 21:12:59 GMTWed, 18 Oct 2023 21:12:59 GMTThe main bug: after entering the Inn, only clicking fades in screen. You can press Space many times, it will however advance the script without fading in. When you finally fade in by clicking, you have missed that many lines.

Possible bug side effect: if you press Space twice for instance, then click, after fading in the same line will be repeated again causing duplicate line in Log

Maybe related or isolate: after fading in, you may need to click once more to be able to advance with Space again (happened to me after 2nd fade in)

Visual bug during fade in: if BG changed like after “Resistance” talk moving from dinner to street, after fade in, characters are still visible before quickly fading out

]]>
https://itch.io/t/1547736/macos-error-pck-file-missingMacOS error pck file Missing.https://itch.io/t/1547736/macos-error-pck-file-missingSun, 25 Jul 2021 04:11:13 GMTSun, 25 Jul 2021 04:11:13 GMTSun, 25 Jul 2021 04:11:13 GMTIn this case the game won't launch and show this message:



The fix is:

  1. After you download the game and extract the zip, you should have the app file (or folder).
  2. Try launching the game. If above alert show, then,
  3. Right click the app.
  4. Then, show package contents
  5. Click contents.
  6. Then, locate the file "W.A.T.C.H. ~Truth Beyond Time~ [DEMO].pck" inside Resource folder.
  7. Copy or cut that pck file, then leave the Resource folder then, paste it inside MacOS folder.
  8. Then, try executing the app. It should be running now.
]]>