diff options
Diffstat (limited to 'src/render/opengl/mglfunctions.h')
-rw-r--r-- | src/render/opengl/mglfunctions.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/render/opengl/mglfunctions.h b/src/render/opengl/mglfunctions.h index e3627be32..dfc31718b 100644 --- a/src/render/opengl/mglfunctions.h +++ b/src/render/opengl/mglfunctions.h @@ -1,9 +1,9 @@ /* - * The ManaPlus Client + * The ManaVerse Client * Copyright (C) 2012-2020 The ManaPlus Developers - * Copyright (C) 2020-2023 The ManaVerse Developers + * Copyright (C) 2020-2025 The ManaVerse Developers * - * This file is part of The ManaPlus Client. + * This file is part of The ManaVerse Client. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -28,7 +28,7 @@ LOGGER_H -#ifdef WIN32 +#ifdef _WIN32 #define getFunction(name) wglGetProcAddress(name) #elif defined ANDROID #define getFunction(name) eglGetProcAddress(name) @@ -38,10 +38,10 @@ LOGGER_H #define getFunction(name) glGetProcAddressREGAL(name) #elif defined(__SWITCH__) #define getFunction(name) SDL_GL_GetProcAddress(name) -#else // WIN32 +#else // _WIN32 #define getFunction(name) glXGetProcAddress(\ reinterpret_cast<const GLubyte*>(name)) -#endif // WIN32 +#endif // _WIN32 #define assignFunction(func) \ { \ |