Crashes Are Symptoms, Not the Game's Personality
No Means Nothing is a Unity-built narrative game, and like every Unity-built narrative game, the crashes players see are not random. They cluster around four points: launch, save load, scene transitions, and the bath or labyrinth finale. If you treat each crash as a symptom instead of a bug, the fix order becomes predictable.
This page walks through the recurring crashes in the order they actually occur for players, with the field-tested fix for each. None of the fixes require developer support; all of them can be done from your own machine.
Crash on Launch
The launch crash is the most common one and the easiest to rule out. It is almost always a Unity runtime issue, a missing dependency, or an antivirus quarantine.
Step 1: Verify Game Files Through Steam
Before anything else, verify the integrity of the game files. A surprising number of launch crashes come from a single corrupted or partially downloaded asset bundle. Steam's verify process re-downloads only the files that fail the checksum, so it is fast.
- Right-click No Means Nothing in your Steam library.
- Properties → Installed Files → Verify integrity of game files.
- Wait for the scan to complete. If any files are flagged, Steam will re-fetch them automatically.
- Launch the game again.
Step 2: Update Your Graphics Driver
Unity's rendering pipeline is sensitive to outdated drivers, especially on cards that are more than two years old. If you have not updated your graphics driver in the last six months, do it now. Use the official driver installer from NVIDIA, AMD, or Intel rather than letting Windows Update handle it — Windows Update tends to ship older WHQL-signed drivers that lag behind the latest Unity fixes.
Step 3: Rule Out Antivirus Quarantine
Some antivirus suites flag Unity player binaries as suspicious and silently quarantine DLLs. The game then crashes on launch with no error message. Add the game's install folder to your antivirus exclusions, restore any quarantined files, and try again. If you are on Windows Defender, the exclusions list lives under Virus & threat protection → Manage settings → Add or remove exclusions.
Step 4: Disable Overlays
Steam overlay, Discord overlay, NVIDIA ShadowPlay, RivaTuner statistics — any of these can hook into the Unity player and crash it on launch. Disable all overlays and re-enable them one at a time to identify the culprit. The Steam overlay in particular has a long history of conflicting with Unity's input system.
Crash on Save Load
If the game launches fine but crashes the moment you load a save, the save file itself is the prime suspect. No Means Nothing stores saves locally; a corrupted save can crash the load handler before the scene ever initializes.
Back Up Before You Touch Anything
Before attempting any save fix, back up the entire save folder. If a fix makes things worse, you want to be able to restore the original state. The save folder lives under your operating system's per-user Unity save location — typically the same folder used by other Unity games from the same publisher.
Try Loading an Earlier Save
If you have multiple save slots, try loading an earlier one. If the earlier save loads fine, the most recent save is corrupted. You will lose some progress, but the game becomes playable again. If you only have one save, skip to the next step.
Rename the Save Folder and Let the Game Reinitialize
If every save crashes on load, rename the save folder (for example, append _bak to the folder name) and launch the game. Unity will recreate a fresh save folder on launch. If the game runs fine with a fresh save folder, your old saves are corrupted beyond per-file recovery. You can copy individual save files back from the backup one at a time to identify which one is poisoned.
Crash Entering the Bath Scene
The bath scene is the most loaded scene in the game. It forks into five of the six endings, runs the LockDoor QTE, and ties into the heartbeat system. Crashes entering the bath are usually a sign that one of the scene's dependencies — the bath config, the heartbeat config, or the lock door quest definition — failed to load.
Lower Graphics Quality Preset
The bath scene uses post-processing effects that some integrated GPUs handle poorly. Lower the graphics quality preset one notch and try again. If the scene loads at a lower preset, the crash is a GPU resource issue, not a game bug.
Disable Fullscreen, Use Borderless Windowed
Unity's exclusive fullscreen mode can crash on scene transitions that change resolution or refresh rate. Switch to borderless windowed in the graphics settings and try the bath scene again. This is a one-minute fix that resolves a surprising number of bath crashes.
If It Still Crashes, Reload the Pre-Bath Save
If the bath scene still crashes after the above steps, the issue is likely a partially loaded asset bundle. Reload your pre-bath save, walk into the bath scene again, and let the game re-stream the assets. If it crashes on the second attempt, the asset bundle itself is corrupted — run Steam's verify integrity step again.
Crash Entering the Labyrinth Scene
The labyrinth scene is the second-hardest scene to load after the bath. It runs a single-checkpoint sequence with no mid-scene save, so a crash here is particularly painful because you lose the run-up to it.
Free Up Memory Before Entering
The labyrinth scene allocates a chunk of memory for its full sequence. If your system is tight on RAM, close background applications — especially browsers with many tabs — before entering. The scene itself is not particularly heavy, but it does not tolerate memory pressure well.
If It Crashes Mid-Scene, You Have to Reload the Anchor
The labyrinth has no mid-scene checkpoint. If the game crashes during the sequence, you have to reload from your pre-labyrinth anchor save and re-enter. There is no way to resume mid-scene. This is one of the reasons the missable achievements guide recommends an anchor save at Day 3 pre-finale.
Black Screen on Day 3
Day 3 has the tightest timer of the three workdays — 380 seconds of real time — and some players hit a black screen the moment the Day 3 shift starts. This is usually a shader compilation issue, not a crash.
Wait 30 Seconds Before Interacting
When the black screen appears, wait 30 seconds before interacting with the game. Unity is compiling shaders for the Day 3 scene, and on first compilation the screen can stay black for several seconds. If the screen comes back, the shaders are now cached and the issue will not recur on subsequent loads.
If the Black Screen Persists, Clear the Shader Cache
If waiting does not help, the shader cache itself may be corrupted. The cache lives in the Unity player's cache directory. Delete the cache directory and let the game rebuild it on next launch. The first launch after clearing will be slower as shaders recompile, but the black screen should be gone.
Crash on Save Write
If the game crashes specifically when writing a save — usually right after you trigger a manual save — the cause is almost always a disk permission issue or a full disk.
Check Disk Space
The most common cause of save-write crashes is simply a full disk. Check that the drive hosting your save folder has at least a few gigabytes of free space. Unity save writes are small, but if the disk is at 99% capacity, even a small write can fail.
Check Folder Permissions
If disk space is fine, check that your user account has write permission to the save folder. Right-click the save folder, Properties → Security, and confirm your user has Write permission. If you are on a corporate or shared machine, this is a common silent failure.
Crash After a Patch
Game patches occasionally introduce regressions. If the game ran fine before a patch and crashes after, the patch is the prime suspect. Before reporting it as a bug, do the following.
- Verify integrity through Steam — the patch may have downloaded incompletely.
- Back up your saves, then rename the save folder and launch with a fresh save. If the fresh save runs fine, the patch changed the save format and your old saves need migration.
- Check the Steam community hub for other players hitting the same crash after the patch. If multiple players report it, it is a patch regression — wait for a hotfix rather than troubleshooting your own machine.
When Nothing Else Works: The Clean Reinstall
If every fix above fails, the last resort is a clean reinstall. Uninstall the game through Steam, manually delete the install folder, manually delete the save folder (after backing it up), and reinstall. This clears out any corrupted assets, configs, or cache that the verify step missed. A clean reinstall resolves maybe one in twenty cases, but those cases tend to be the ones where nothing else works.
Reporting a Crash That Is Genuinely a Bug
If you have worked through every fix above and the game still crashes at a specific point, you are probably looking at a real bug. The Steam community hub is the fastest channel for the developers to see it. When you report, include the following.
- The exact scene or action that triggers the crash.
- Whether the crash is reproducible or intermittent.
- Your operating system, graphics card, and driver version.
- Whether you have any overlays enabled.
- The contents of the crash log if Unity produced one — usually found in the player's log directory.
One-Page Summary
Most No Means Nothing crashes are one of four things: a corrupted asset bundle, an outdated graphics driver, a quarantined DLL, or a corrupted save. Verify integrity, update drivers, rule out antivirus, and back up your saves before you touch them. The bath and labyrinth scenes are the heaviest loads — lower graphics quality and switch to borderless windowed if those crash. Day 3 black screens are shader compilation — wait it out. If nothing works, a clean reinstall is the last resort.
- Missable Achievements Guide — anchor save strategy that minimizes crash-related progress loss.
- Bath LockDoor QTE Trainer — practice the bath sequence to reduce in-scene failure.
- Heartbeat Tempo Trainer — practice the finale heartbeat outside the live scene.
- Data Provenance Standard — which game facts on this site are verified from the game's own files.