From e2740b218780dbc4fa3c3715426934f56ca4be76 Mon Sep 17 00:00:00 2001 From: Emmanuel AYME Date: Sun, 22 Feb 2026 11:26:58 +0100 Subject: [PATCH] Add screen resolution and aspect ratio informations --- external/includes/GameInformations.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/external/includes/GameInformations.h b/external/includes/GameInformations.h index c4bd03f..364f015 100644 --- a/external/includes/GameInformations.h +++ b/external/includes/GameInformations.h @@ -2,6 +2,9 @@ // Shared structure values with Core dll struct GameInfos { + int screenWidth; + int screenHeight; + float aspectRatio; float FOVIn; float CompensatedFOV; float FOVOut;