diff options
| author | catdbg <catsarecool222@proton.me> | 2026-03-06 14:38:16 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-06 16:38:16 -0600 |
| commit | eeedbf08d373519dc7b1399d9ca072d2815b32ff (patch) | |
| tree | 0b3b753249e1405a0c9f3ad4cc8c2e3a51eead7a /Minecraft.Client/Common/App_structs.h | |
| parent | 4e67706dc3dc02e1a96fa5cd479b831dfb92e85d (diff) | |
Save FOV value to settings (#670)
* Save FOV value to settings.dat
* Batch font drawing to fix debug overlay FPS
* Revert "Batch font drawing to fix debug overlay FPS"
This reverts commit 7dcecdbd4d6037194e75d9fe3130845dd8690928.
Diffstat (limited to 'Minecraft.Client/Common/App_structs.h')
| -rw-r--r-- | Minecraft.Client/Common/App_structs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Minecraft.Client/Common/App_structs.h b/Minecraft.Client/Common/App_structs.h index a7552ec0..6a6e0354 100644 --- a/Minecraft.Client/Common/App_structs.h +++ b/Minecraft.Client/Common/App_structs.h @@ -65,8 +65,8 @@ typedef struct // In-Menu sensitivity unsigned char ucMenuSensitivity; unsigned char ucInterfaceOpacity; - unsigned char ucPad02;//2 bytes of padding added here - unsigned char usPad03; + unsigned char ucPad02; // 1 byte padding + unsigned char ucFov; // Adding another bitmask flag for more settings for 1.8.2 unsigned int uiBitmaskValues; // 0x00000001 - eGameSetting_Clouds - on |
