This repository has been archived by the owner. It is now read-only.
Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Fixed compiler warning
- Loading branch information
Showing
with
1 addition
and
2 deletions.
-
+1
−2
src/video/windows/SDL_windowskeyboard.c
|
@@ -1351,7 +1351,6 @@ IME_RenderCandidateList(SDL_VideoData *videodata, HDC hdc) |
|
|
SIZE candsizes[MAX_CANDLIST]; |
|
|
SIZE maxcandsize = {0}; |
|
|
HBITMAP hbm = NULL; |
|
|
BYTE *bits = NULL; |
|
|
const int candcount = SDL_min(SDL_min(MAX_CANDLIST, videodata->ime_candcount), videodata->ime_candpgsize); |
|
|
SDL_bool vertical = videodata->ime_candvertical; |
|
|
|
|
@@ -1433,7 +1432,7 @@ IME_RenderCandidateList(SDL_VideoData *videodata, HDC hdc) |
|
|
; |
|
|
} |
|
|
|
|
|
bits = StartDrawToBitmap(hdc, &hbm, size.cx, size.cy); |
|
|
StartDrawToBitmap(hdc, &hbm, size.cx, size.cy); |
|
|
|
|
|
SelectObject(hdc, listpen); |
|
|
SelectObject(hdc, listbrush); |
|
|
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.