# Resources, FMOD Studio Settings Issue

**URL:** https://qa.fmod.com/t/resources-fmod-studio-settings-issue/17051
**Category:** Unity
**Created:** [April 14, 2021, 6:39pm UTC](https://qa.fmod.com/t/resources-fmod-studio-settings-issue/17051 "2021-04-14T18:39:51Z")
**Posts on this page:** 2
**Page:** 1

<div class="post-metadata">

### Author: ![Basil](https://avatars.discourse-cdn.com/v4/letter/b/59ef9b/32.png) [@Basil](https://qa.fmod.com/u/Basil)
#### Post date: [April 14, 2021, 6:39pm UTC](https://qa.fmod.com/t/resources-fmod-studio-settings-issue/17051/1 "2021-04-14T18:39:51Z")

</div>

So have an issue with the fmod settings and my Mac build failed due to it.  
a bunch of these lines come up in the console,  
[FMOD] PlaylistInstrumentInstance::startFullLengthHook : Attempting to schedule a sound in the past, this could cause inaccurate playback.  
Followed by these whens I stop the project,  
[FMOD] FMOD\_OS\_Net\_Read : read failed with errno 9  
[FMOD] ProfileClient::recvThreadLoopFunction : Recv thread loop returned 43  
Please talk me through fixing this issue. Thank you.

---

<div class="post-metadata">

### Author: ![joseph](https://yyz2.discourse-cdn.com/flex036/user_avatar/qa.fmod.com/joseph/32/264_2.png) [@joseph](https://qa.fmod.com/u/joseph)
#### Post date: [April 22, 2021, 1:26am UTC](https://qa.fmod.com/t/resources-fmod-studio-settings-issue/17051/2 "2021-04-22T01:26:25Z")

</div>

The `[FMOD] PlaylistInstrumentInstance::startFullLengthHook : Attempting to schedule a sound in the past, this could cause inaccurate playback` message indicates a problem that only occurs in real time, and so should not affect your build.

The other messages:

```
[FMOD] FMOD_OS_Net_Read : read failed with errno 9
[FMOD] ProfileClient::recvThreadLoopFunction : Recv thread loop returned 43

```

Indicate that you’ve exited without cleanly closing a network connection, and usually occur if you exit your game (or stop running your game) without first disconnecting live update.

None of these messages are related to any issue with building your project.
