Updated for v1.15

Idols of Ash
Black Screen Fix

Game launches to a black screen? No sound? Crashing immediately? Won't open at all? Every known fix for Windows and Linux, in order of what works most often.

Always start here — update to v1.15

v1.13 added ANGLE rendering (fixes most black screen issues). v1.15 improved controller support and pixelation options. Download the latest build from the official itch.io page or Steam before trying anything else. Many issues reported online are already fixed in newer versions.

Black screen on launch (Windows)

The Idols of Ash black screen on launch is the most common issue reported on Windows. It was introduced by graphics driver compatibility problems with Godot 4's renderer and addressed in v1.13. Here are the fixes in order — try each one before moving to the next.

1

Update to v1.15 — fixes 80% of black screen reports

Go to leafygames.itch.io/idols-of-ash, download the latest IdolsOfAsh_v1_15.zip, extract it, and run the new executable. Do not copy the old executable into the new folder — extract fresh.

2

Enable ANGLE rendering in game settings

Launch the game. If you see a black screen with audio playing in the background, the settings screen may be invisible but still functional. Try pressing Escape to open the menu, then look for a Graphics or Rendering option. Switch to ANGLE mode.

3

Launch with the D3D12 flag

Navigate to the game folder in File Explorer. Click the address bar, type cmd, and press Enter to open a command prompt in that folder. Then run:

IdolsOfAsh.exe --rendering-driver d3d12

If the game loads correctly this way, you can create a shortcut with this flag to avoid using the command prompt every time. Right-click the .exe → Create shortcut → right-click the shortcut → Properties → add --rendering-driver d3d12 after the executable path in the Target field.

4

Try the Vulkan or OpenGL flag instead

If D3D12 does not work, try these alternatives one at a time:

IdolsOfAsh.exe --rendering-driver vulkan
IdolsOfAsh.exe --rendering-driver opengl3
5

Update your GPU drivers

Outdated drivers are the second most common cause of black screens in Godot 4 games. Visit your manufacturer's site and install the latest version: NVIDIA (nvidia.com/drivers), AMD (amd.com/support), or Intel (intel.com/content/www/us/en/download-center).

6

Check your hardware — known incompatible configs

Some older AMD APUs (e.g. AMD A12 9720P) have reported persistent black screens that none of the rendering driver flags resolve. The game uses Godot 4.3 which requires reasonably modern GPU feature support. If your GPU is more than 8–9 years old and none of the above flags work, the hardware may not be compatible.

1

Run from inside the extracted folder

The most common Linux black screen cause: running the binary from a different directory. Open a terminal, cd into the extracted folder, and run it from there:

cd ~/Downloads/IdolsOfAsh_v1_15_LINUX/
chmod +x ./IdolsOfAsh
./IdolsOfAsh
2

Try Vulkan or OpenGL flags

./IdolsOfAsh --rendering-driver vulkan
./IdolsOfAsh --rendering-driver opengl3
3

Check Mesa / GPU driver version

Godot 4.3 requires Mesa 21+ for Vulkan support. Run glxinfo | grep "OpenGL version" to check. If below Mesa 21, update your system packages or use the OpenGL3 flag above.

Idols of Ash no sound — complete fix

Do not play without sound. The Murderpede's chittering is your primary indicator of its distance and direction. Playing without audio makes the game significantly harder and removes a core mechanic.
1

Check the browser tab (web version only)

If playing in browser, look for a muted speaker icon on the tab. Click it to unmute. Browsers sometimes auto-mute tabs that start audio without user interaction — click anywhere on the game canvas first, then refresh.

2

Check Windows audio output device

Right-click the volume icon in the taskbar → Sound settings. Verify the Output device matches what you are actually using (headphones vs speakers vs HDMI). Then scroll down to App volume and device preferences and check that Idols of Ash is not set to a different device or muted.

3

Disable exclusive audio control

Some apps (Discord, DAWs, audio interfaces) take exclusive control of the audio device. Right-click the volume icon → SoundsPlayback tab → double-click your device → Advanced tab → uncheck Allow applications to take exclusive mode control.

4

Restart the Windows Audio service

Press Win + R, type services.msc, find Windows Audio, right-click → Restart. Then relaunch the game.

One user reported that the game had no audio at all despite the guide mentioning sound cues — this turned out to be a missing audio device rather than a game bug. If all of the above fail, try plugging in headphones directly.

Idols of Ash won't open or crashes immediately

1

Wrong platform build — most common cause

If you downloaded .zip on Linux or .tar.xz on Windows, the executable will not run. Re-download the correct file: WindowsIdolsOfAsh_v1_15.zip · LinuxIdolsOfAsh_v1_15_LINUX.tar.xz.

2

itch.io desktop app "no compatible files" error

This is a known itch app bug, not a game issue. Bypass it entirely — download directly in your web browser from leafygames.itch.io/idols-of-ash. The browser download always works.

3

Antivirus quarantined the executable

Check your antivirus quarantine folder. Unsigned indie executables are frequently false-positived. Add an exception for the game folder, restore the quarantined file, and relaunch. Only do this if you downloaded from the official source.

4

Run as administrator (Windows)

Right-click IdolsOfAsh.exeRun as administrator. Some systems block certain rendering drivers without elevated permissions.

5

Install Visual C++ Redistributables

Godot 4 games require the Microsoft Visual C++ Redistributable. Download and install both the x64 and x86 versions from Microsoft's official site (search "Visual C++ Redistributable downloads").

6

Check the log file

The game writes a log to help diagnose crashes. The log location on Windows: %APPDATA%\Godot\app_userdata\Idols of Ash\logs\. If you need to report the issue to the developers, attach the most recent log file from that folder to your comment on the itch.io page.

Linux installation & launch issues

Complete Linux setup from scratch

# 1. Download the Linux archive from itch.io, then:

cd ~/Downloads
tar -xf IdolsOfAsh_v1_15_LINUX.tar.xz
cd IdolsOfAsh_v1_15_LINUX/
chmod +x ./IdolsOfAsh
./IdolsOfAsh
Do not move the executable. Run it from inside the extracted folder — the game binary expects its resource files to be in the same directory.

Common Linux errors and fixes

!

"Permission denied" when running

Run chmod +x ./IdolsOfAsh in the game folder, then try again. The archive preserves permissions on most systems but some extraction tools strip them.

!

"No such file or directory" despite file existing

This usually means a missing 32-bit library on a 64-bit system. Run: ldd ./IdolsOfAsh | grep "not found" to identify missing libraries. Install the listed packages via your package manager.

!

Game runs but Ctrl+W closes browser tab (web version)

This is a known issue with the web version — Ctrl is used to slide the rope, and Ctrl+W in a browser closes the tab. Use the downloadable version on Linux to avoid this, or play in a browser that lets you disable tab shortcuts (Firefox with certain extensions).

!

Runs successfully on Android via Gamenative

Community members have reported the Linux build running on Android using the Gamenative app. This is unsupported but apparently works well.

Windows Defender / SmartScreen warning

The game is safe if downloaded from leafygames.itch.io/idols-of-ash or the Steam store page. The warning appears because the executable is unsigned.

Why does this happen?

Code signing certificates — the thing that tells Windows an executable is from a verified publisher — cost several hundred dollars per year. Small independent studios like Leafy Games often cannot justify this cost for an initial release, especially a pay-what-you-want game. The Idols of Ash SmartScreen warning is Windows being cautious about any unsigned executable, not a detection of actual malware.

How to proceed safely

1

Verify the download source first

Confirm the URL is exactly leafygames.itch.io/idols-of-ash or store.steampowered.com/app/4450800. Do not proceed with files from any other source — many mirror sites repackage indie games with actual malware added.

2

Bypass SmartScreen

When the warning appears: click More info (the link under the warning text) → click Run anyway. The game will launch normally.

3

Steam version has no warning

If the SmartScreen prompt bothers you, the Steam version ($2.99) is signed through Valve's infrastructure and will not trigger the warning. It also includes Steam achievements and automatic updates.

Controller not working in Idols of Ash

Idols of Ash controller support was significantly improved in v1.15. If you are on an older version, update first — it resolves most controller issues.

1

Connect controller before launching the game

Idols of Ash detects controllers on startup. Plugging in a controller after the game is already running may not register. Quit, connect your controller, relaunch.

2

Best supported controllers

Xbox controllers (wired or wireless via Xbox adapter) work out of the box on Windows. PlayStation DualSense / DualShock 4 work natively on v1.15. Generic and third-party controllers may need remapping.

3

Use Steam Input for unsupported controllers

If using the Steam version, enable Steam Input: Library → Idols of Ash → right-click → Properties → Controller → Enable Steam Input. This wraps your controller in Steam's universal mapping layer.

For the itch.io version with a DualShock 4, use DS4Windows (free, open source) to present it as an Xbox controller to Windows.

4

Adjust controller sensitivity in settings

v1.15 added a dedicated controller sensitivity slider. If movement or aiming feels off, open Settings in-game and adjust it. The default may feel too slow or too fast depending on your controller's deadzone.

Performance & low FPS tips

Idols of Ash is not a demanding game — it runs on integrated graphics on most modern systems. If you are experiencing Idols of Ash low FPS or stuttering, these settings help.

1

Disable Volumetric Lighting (v1.14+)

In Settings, toggle off Volumetric Lighting. This is the single biggest performance gain — it can double FPS on lower-end hardware with minimal visual impact in the dark environment.

2

Enable Reduce Pixelization (for recording)

If capturing video and the game looks pixelated in your recording, enable Reduce Pixelization in Settings. Note: this is a render scale option, not a performance option — it may slightly reduce FPS on weaker GPUs.

3

Use the D3D12 rendering driver on Windows

Beyond fixing black screens, --rendering-driver d3d12 can also improve performance on modern NVIDIA and AMD GPUs compared to the default renderer. Worth trying even if you do not have a black screen issue.

4

Close background applications

Discord with video, browser with many tabs, and screen recorders all compete for GPU resources. Close anything not needed before a serious run — especially in First Kiln where dropped frames can mean a death.

Still not working? Report to the developers

If none of the above fixes your Idols of Ash issue, the Leafy Games team actively reads comments on the itch.io page. When reporting, include:

Your system specs

GPU model, CPU, RAM, Windows version (or Linux distro + kernel). The log file location on Windows: %APPDATA%\Godot\app_userdata\Idols of Ash\logs\

What you have already tried

List which rendering flags you tested so the team does not suggest things you have already done.

Official support page

The developers also have a support page at idolsofash.com/support.html with instructions for sending log files.

More guides