diff --git a/inc/main.h b/inc/main.h
index debf489..5b015cf 100644
--- a/inc/main.h
+++ b/inc/main.h
@@ -96,7 +96,6 @@ typedef struct IDirectDrawImpl
 	BOOL iscnc1;
     LONG incutscene;
     DWORD (WINAPI *renderer)(void);
-    char screenshotKey;
     BOOL fullscreen;
     BOOL maintas;
     BOOL noactivateapp;
diff --git a/src/main.c b/src/main.c
index e614106..ebb9ab6 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1023,15 +1023,6 @@ LRESULT CALLBACK WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
                     return 0;
                 }
             }
-
-            if(wParam == VK_CONTROL || wParam == ddraw->screenshotKey)
-            {
-                if(GetAsyncKeyState(VK_CONTROL) & 0x8000 && GetAsyncKeyState(ddraw->screenshotKey) & 0x8000)
-                {
-                    screenshot(ddraw->primary);
-                    return 0;
-                }
-            }
             break;
 
         case WM_KEYUP:
diff --git a/src/settings.c b/src/settings.c
index d73c279..b8b4848 100644
--- a/src/settings.c
+++ b/src/settings.c
@@ -52,9 +52,6 @@ void Settings_Load()
     if (maxTicks > 0 && maxTicks < 1000)
         ddraw->ticklength = 1000.0f / maxTicks;
 
-    GetString("screenshotKey", "G", tmp, sizeof(tmp));
-    ddraw->screenshotKey = toupper(tmp[0]);
-
     if ((ddraw->fullscreen = GetBool("fullscreen", FALSE)))
         WindowRect.left = WindowRect.top = -32000;
 
@@ -187,8 +184,6 @@ static void CreateSettingsIni()
             "; Window position, -32000 = center to screen\n"
             "posX=-32000\n"
             "posY=-32000\n"
-            "; Screenshot Hotkey, default = CTRL + G\n"
-            "screenshotKey=G\n"
             "; Hide WM_ACTIVATEAPP messages to prevent freezing on alt+tab (Carmageddon)\n"
             "noactivateapp=false\n"
             "; developer mode (don't lock the cursor)\n"