Published by: TechHaunt Legacy Labs
Reading Time: 8 minutes
If you are reading this, you are likely experiencing the dreaded "slideshow effect." You’ve installed Prototype 2, the 2012 open-world masterpiece from Radical Entertainment, but your aging laptop or budget desktop is gasping for air. The frame rate is hovering around 15 FPS, the audio is stuttering, and Heller moves like he is wading through molasses.
You don't need a new graphics card. You need the Prototype 2 low end PC config file.
Unlike modern games that offer extensive scalability menus, Prototype 2 hides its true optimization potential deep within an XML file. By manually editing this configuration file, you can force the game to run on settings lower than the "Low" preset allows. This guide will walk you through exactly how to find, modify, and replace your config file to turn a crashing, laggy mess into a playable, 60 FPS experience on a potato PC.
config.ini → Properties.This prevents the game from resetting your custom settings.
Ctrl + Shift + Esc to open Task Manager.prototype2.exe.[Video]
ResolutionX = 800
ResolutionY = 600
RefreshRate = 60
Windowed = 1
VSync = 0
AnisotropicFiltering = 0
AntiAliasing = 0
ShadowQuality = 0
TextureQuality = 0
ShaderQuality = 0
WaterQuality = 0
Bloom = 0
MotionBlur = 0
DepthOfField = 0
AmbientOcclusion = 0
PostProcessing = 0
GPUMemory = 512
[Audio]
SoundQuality = 0
[Game]
CameraShake = 0
This is the most effective step. We will edit the video.ini file to force settings lower than the in-game menu allows.
1. Locate the File:
C:\Users\YOUR_USERNAME\Documents\Activision\Prototype 2video.ini.2. Edit the File:
video.ini -> Open With -> Notepad.Copy/Paste these values (or edit manually):
[Display] ; Set this to your native resolution for stability, or lower it manually for FPS. Width=1280 Height=720 RefreshRate=60 Fullscreen=1[Render] ; Texture Quality (0=Low, 1=Medium, 2=High) TextureQuality=0
; World Texture Quality (Lower saves RAM) WorldTextureQuality=0
; Anisotropic Filtering (Set to 0 or 1 for low-end) AnisotropicFiltering=0
; Shadow Quality (0=Off, huge FPS boost) ShadowQuality=0 prototype 2 low end pc config file
; This is crucial. Removes shadow maps entirely. EnableShadows=0
; Reflections (Off saves processing power) Reflections=0
; Water Quality WaterQuality=0
; Object LOD (Level of Detail). Higher number = more low-poly models. ; Setting this to 5 or 10 makes the game look ugly but runs much faster. LodScale=5
; Ambient Occlusion (SSAO). Turn this OFF. AmbientOcclusion=0
; Motion Blur. Turn OFF. MotionBlur=0
3. Save the File:
Ctrl + S).For the ultimate lazy tweak, create a .bat file on your desktop that kills background processes and launches the game with low priority for explorer.exe.
Copy this into Prototype2_Potato.bat:
@echo off
echo Killing unnecessary Windows services...
taskkill /f /im explorer.exe
taskkill /f /im SearchIndexer.exe
taskkill /f /im Teams.exe
echo Setting game to high priority...
start /high Prototype2.exe -windowed -width 800 -height 600
echo Game launched. To get taskbar back, type 'explorer' after quitting.
pause
When you quit Prototype 2, press Win + R and type explorer to restore your desktop. This frees up nearly 600MB of RAM on Windows 10/11.
While game is running:
Prototype2.exe → Set priority → High (not Realtime)