diff options
| author | Zephyron <zephyron@citron-emu.org> | 2025-01-27 00:46:46 +1000 |
|---|---|---|
| committer | Mike Lothian <mike@fireburn.co.uk> | 2025-05-11 14:29:04 +0100 |
| commit | b78d35014af775a6c521ef2fd1b2d264cba87881 (patch) | |
| tree | a251cb4d5394ef9952646a53916616f9ce46f475 | |
| parent | 5c4e34d80287d626b0cd74198aa85c8c7042577e (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.
| -rw-r--r-- | src/video_core/gpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/video_core/gpu.h b/src/video_core/gpu.h index a4acbad76..6ac184880 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" |
