engine: platform: refactor R_GetWindowHandle to return a struct instead of a pointer

This commit is contained in:
TheEVolk
2025-05-24 20:47:28 +05:00
committed by Alibek Omarov
parent dd52840a97
commit 9ebeb520fa
6 changed files with 33 additions and 20 deletions
+1 -1
View File
@@ -470,7 +470,7 @@ typedef struct ref_api_s
fs_api_t *fsapi;
// for abstracting the engine's rendering
struct window_handle_t *(*R_GetWindowHandle)( void );
struct window_handle_t (*R_GetWindowHandle)( void );
} ref_api_t;
struct mip_s;