sdl2-compat: Fixed renamed Direct3D device-get APIs.

From 12c06ffbf5055cb51310c57874b913252e086565 Mon Sep 17 00:00:00 2001
From: "Ryan C. Gordon" <[EMAIL REDACTED]>
Date: Thu, 29 Dec 2022 14:13:05 -0500
Subject: [PATCH] Fixed renamed Direct3D device-get APIs.

---
 src/sdl3_syms.h | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/sdl3_syms.h b/src/sdl3_syms.h
index 4f18401..4b0b887 100644
--- a/src/sdl3_syms.h
+++ b/src/sdl3_syms.h
@@ -62,7 +62,7 @@ SDL3_SYM_PASSTHROUGH(void,UnregisterApp,(void),(),)
 
 #if defined(__WIN32__) || defined(__WINGDK__)
 SDL3_SYM_PASSTHROUGH(int,Direct3D9GetAdapterIndex,(int a),(a),return)
-SDL3_SYM_PASSTHROUGH(IDirect3DDevice9*,RenderGetD3D9Device,(SDL_Renderer *a),(a),return)
+SDL3_SYM_RENAMED(IDirect3DDevice9*,RenderGetD3D9Device,GetRenderD3D9Device,(SDL_Renderer *a),(a),return)
 #endif
 
 #ifdef __IOS__
@@ -825,7 +825,7 @@ SDL3_SYM_PASSTHROUGH(long,lround,(double a),(a),return)
 SDL3_SYM_PASSTHROUGH(long,lroundf,(float a),(a),return)
 SDL3_SYM_PASSTHROUGH(int,SoftStretchLinear,(SDL_Surface *a, const SDL_Rect *b, SDL_Surface *c, const SDL_Rect *d),(a,b,c,d),return)
 #if defined(__WIN32__) || defined(__WINGDK__)
-SDL3_SYM_PASSTHROUGH(ID3D11Device*,RenderGetD3D11Device,(SDL_Renderer *a),(a),return)
+SDL3_SYM_RENAMED(ID3D11Device*,RenderGetD3D11Device,GetRenderD3D11Device,(SDL_Renderer *a),(a),return)
 #endif
 SDL3_SYM_PASSTHROUGH(int,UpdateNVTexture,(SDL_Texture *a, const SDL_Rect *b, const Uint8 *c, int d, const Uint8 *e, int f),(a,b,c,d,e,f),return)
 SDL3_SYM_PASSTHROUGH(void,SetWindowKeyboardGrab,(SDL_Window *a, SDL_bool b),(a,b),)