Merge all occurances of __func__ and __FUNCTION__ to SDL_FUNCTION

This commit is contained in:
Max Seidenstücker
2026-02-06 16:20:00 +01:00
committed by Sam Lantinga
parent d870911202
commit 8f8880a8eb
15 changed files with 41 additions and 41 deletions

View File

@@ -257,7 +257,7 @@ void *alloca(size_t);
* For example:
*
* ```c
* #define LOG_ERROR(X) OutputDebugString(SDL_STRINGIFY_ARG(__FUNCTION__) ": " X "\n")`
* #define LOG_ERROR(X) OutputDebugString(SDL_STRINGIFY_ARG(SDL_FUNCTION) ": " X "\n")`
* ```
*
* \param arg the text to turn into a string literal.