How to Increase Your FOV in Deadlock (Beyond 90)
Quick guide to raising your field of view in-game and via the game files.
By !backz · updated 6/9/2026
How to Increase Your FOV in Deadlock
Read this first
gameinfo.gi.This is a config change — you're only editing a settings file the game reads on launch, not injecting code or touching anything protected. The common reasoning is that if Valve didn't want players doing this, they'd simply block the file or reject the value rather than letting it load. For that reason it's widely reported as non-bannable. There's no official guarantee, though, so do it at your own risk.
Method 1: In-game (easy, but limited)
This is the official, safest option. If 90 isn't enough, use Method 2.
Method 2: Editing the game file (gameinfo.gi)
Find the file
game folder, then citadel.
...\steamapps\common\Deadlock\game\citadel\gameinfo.gigameinfo.gi first.Open the file
gameinfo.gi -> Open with -> Notepad (or Notepad++).ConVars. You'll land in a block like this:
ConVars
{
"rate"
{
"min" "98304"
"default" "786432"
"max" "1000000"
}
}Add the command
Add a new line inside the curly braces { ... } of the ConVars block.
Option A — true FOV (recommended). Sets the field of view directly in degrees, e.g. 110:
"citadel_camera_fov" "110"Option B — aspect-ratio trick (widely used). Note: this is not a real FOV, it stretches the image. Pick a value from the table:
"r_aspectratio" "2.83"Conversion table for Option B (value = approximate FOV):
1.75 = 80 (default)2.15 = 902.49 = 1002.66 = 1052.83 = 1103.00 = 115Here's the block with Option A added:
ConVars
{
"citadel_camera_fov" "110"
"rate"
{
"min" "98304"
"default" "786432"
"max" "1000000"
}
}Save and test
.gi / text — do not save as .txt.FAQ
citadel_camera_fov gives a true field of view with no distortion and is the cleaner choice. r_aspectratio only stretches the image.Community guide · always back up your config files before editing.