(Glitch64) Remove unused param name; list the used params more clearly.
This commit is contained in:
parent
aa165488ca
commit
8445dbb9e6
|
@ -604,13 +604,15 @@ grSstWinOpenExt(
|
|||
GrScreenRefresh_t refresh_rate,
|
||||
GrColorFormat_t color_format,
|
||||
GrOriginLocation_t origin_location,
|
||||
GrPixelFormat_t pixelformat,
|
||||
GrPixelFormat_t /*pixelformat*/,
|
||||
int nColBuffers,
|
||||
int nAuxBuffers)
|
||||
{
|
||||
LOG("grSstWinOpenExt(%d, %d, %d, %d, %d, %d %d)\r\n", hWnd, screen_resolution, refresh_rate, color_format, origin_location, nColBuffers, nAuxBuffers);
|
||||
return grSstWinOpen(hWnd, screen_resolution, refresh_rate, color_format,
|
||||
origin_location, nColBuffers, nAuxBuffers);
|
||||
LOG(
|
||||
"grSstWinOpenExt(%d, %d, %d, %d, %d, %d %d)\r\n",
|
||||
hWnd, screen_resolution, refresh_rate, color_format, origin_location, nColBuffers, nAuxBuffers);
|
||||
return grSstWinOpen(
|
||||
hWnd, screen_resolution, refresh_rate, color_format, origin_location, nColBuffers, nAuxBuffers);
|
||||
}
|
||||
|
||||
#ifdef WIN32
|
||||
|
|
Loading…
Reference in New Issue