Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Commit

Permalink
Fixed warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
bobbens committed Aug 4, 2008
1 parent 4529daf commit 126f33b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/video/win32/SDL_win32window.c
Expand Up @@ -428,7 +428,7 @@ SDL_HelperWindowCreate(void)
ZeroMemory(&wce, sizeof (wce));
wce.cbSize = sizeof(WNDCLASSEX);
wce.lpfnWndProc = NULL;
wce.lpszClassName = class_name;
wce.lpszClassName = (LPCWSTR) class_name;
wce.hInstance = hInstance;

SDL_HelperWindow = CreateWindowExA(0, class_name, win_name, WS_OVERLAPPEDWINDOW,
Expand Down

0 comments on commit 126f33b

Please sign in to comment.