Skip to content

Commit

Permalink
fix: remove superfluous TEXT macro
Browse files Browse the repository at this point in the history
we're in non UNICODE #ifdef branch, so the macro is void
sprintf (ASCII) of some TEXT (TCHAR*) would not make sense anyway
  • Loading branch information
nicolas-cellier-aka-nice committed Jan 2, 2019
1 parent 4438e67 commit 76e2ecf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions platforms/win32/vm/sqWin32Main.c
Expand Up @@ -696,9 +696,9 @@ void gatherSystemInfo(void) {
}
#else
snprintf(tmpString, sizeof(tmpString),
TEXT("Display Information: \n")
TEXT("\tGraphics adapter name: %s\n")
TEXT("\tPrimary monitor resolution: %d x %d\n"),
"Display Information: \n"
"\tGraphics adapter name: %s\n"
"\tPrimary monitor resolution: %d x %d\n",
gDev.DeviceString,
screenX, screenY);
#endif
Expand Down

0 comments on commit 76e2ecf

Please sign in to comment.