wayland: Check for both _WAYLAND_CLIENT_H and WAYLAND_CLIENT_H

This commit is contained in:
Ethan Lee 2021-02-04 19:04:56 -05:00 committed by Sam Lantinga
parent 31e8a4627a
commit cad67082f3
1 changed files with 1 additions and 1 deletions

View File

@ -64,7 +64,7 @@ void SDL_WAYLAND_UnloadSymbols(void);
#ifdef SDL_VIDEO_DRIVER_WAYLAND_DYNAMIC
#ifdef _WAYLAND_CLIENT_H
#if defined(_WAYLAND_CLIENT_H) || defined(WAYLAND_CLIENT_H)
#error Do not include wayland-client ahead of SDL_waylanddyn.h in dynamic loading mode
#endif