summaryrefslogtreecommitdiff
path: root/src/video_core
diff options
context:
space:
mode:
authorZephyron <zephyron@citron-emu.org>2025-01-27 00:46:46 +1000
committerZephyron <zephyron@citron-emu.org>2025-01-27 00:46:46 +1000
commitf380744c61bcce41c64bcc4c2b65b7aa07227a96 (patch)
tree2c63ae84ab458a4c007ce353b263c8c2431f840f /src/video_core
parentb7e11d3724a262da718d1eff3d6e8c2c57f18637 (diff)
android: Fix compilation by adding missing log.h include
Adds missing include for common/logging/log.h in gpu.h which was causing compilation failures on Android. This header is needed for logging functionality used in GPU-related operations. The include was previously indirectly available through other headers, but making it explicit improves code clarity and prevents potential future compilation issues.
Diffstat (limited to 'src/video_core')
-rw-r--r--src/video_core/gpu.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h
index dadfc00bf..86ce52d8d 100644
--- a/src/video_core/gpu.h
+++ b/src/video_core/gpu.h
@@ -7,6 +7,7 @@
#include "common/bit_field.h"
#include "common/common_types.h"
+#include "common/logging/log.h"
#include "core/hle/service/nvdrv/nvdata.h"
#include "video_core/cdma_pusher.h"
#include "video_core/framebuffer_config.h"