From 45df39c52cd181841ff891f81b4240e45e666ad7 Mon Sep 17 00:00:00 2001 From: Sam Lantinga Date: Sun, 12 Oct 2008 16:15:43 +0000 Subject: [PATCH] This can be static --- src/video/win32/SDL_win32window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video/win32/SDL_win32window.c b/src/video/win32/SDL_win32window.c index bc920f493..0140733bc 100644 --- a/src/video/win32/SDL_win32window.c +++ b/src/video/win32/SDL_win32window.c @@ -38,7 +38,7 @@ #include "SDL_syswm.h" extern HCTX *g_hCtx; /* the table of tablet event contexts, each windows has to have it's own tablet context */ -int highestId = 0; /* the highest id of the tablet context */ +static Uint32 highestId = 0; /* the highest id of the tablet context */ /* Fake window to help with DirectInput events. */ HWND SDL_HelperWindow = NULL;