mirror of
https://github.com/reactos/reactos.git
synced 2025-04-22 13:10:39 +00:00
[OPENGL32]
- fix an off-by-one error svn path=/trunk/; revision=63615
This commit is contained in:
parent
b6f7dca618
commit
aa7c4d673d
1 changed files with 1 additions and 1 deletions
|
@ -439,7 +439,7 @@ BOOL sw_SetPixelFormat(HDC hdc, struct wgl_dc_data* dc_data, INT format)
|
|||
TRACE("OpenGL software implementation START!\n");
|
||||
|
||||
/* allocate our structure */
|
||||
fb = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, FIELD_OFFSET(struct sw_framebuffer, bmi.bmiColors[2]));
|
||||
fb = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, FIELD_OFFSET(struct sw_framebuffer, bmi.bmiColors[3]));
|
||||
if(!fb)
|
||||
{
|
||||
ERR("HeapAlloc FAILED!\n");
|
||||
|
|
Loading…
Reference in a new issue