Minor macrom comment cleanup.
--HG-- branch : SDL-1.2 extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/branches/SDL-1.2%402327
This commit is contained in:
parent
10b93c9102
commit
a0395a876c
1 changed files with 6 additions and 3 deletions
|
@ -163,7 +163,7 @@ static SDL_VideoDevice *ROM_CreateDevice(int devindex)
|
||||||
device->GL_SwapBuffers = Mac_GL_SwapBuffers;
|
device->GL_SwapBuffers = Mac_GL_SwapBuffers;
|
||||||
device->GL_LoadLibrary = Mac_GL_LoadLibrary;
|
device->GL_LoadLibrary = Mac_GL_LoadLibrary;
|
||||||
device->GL_GetProcAddress = Mac_GL_GetProcAddress;
|
device->GL_GetProcAddress = Mac_GL_GetProcAddress;
|
||||||
#endif // Have OpenGL
|
#endif /* Have OpenGL */
|
||||||
device->SetCaption = Mac_SetCaption;
|
device->SetCaption = Mac_SetCaption;
|
||||||
device->SetIcon = NULL;
|
device->SetIcon = NULL;
|
||||||
device->IconifyWindow = NULL;
|
device->IconifyWindow = NULL;
|
||||||
|
@ -689,8 +689,11 @@ static int ROM_SetColors(_THIS, int firstcolor, int ncolors, SDL_Color *colors)
|
||||||
(**cTab).ctTable[j].rgb.green = colors[i].g << 8 | colors[i].g;
|
(**cTab).ctTable[j].rgb.green = colors[i].g << 8 | colors[i].g;
|
||||||
(**cTab).ctTable[j].rgb.blue = colors[i].b << 8 | colors[i].b;
|
(**cTab).ctTable[j].rgb.blue = colors[i].b << 8 | colors[i].b;
|
||||||
}
|
}
|
||||||
// if ( (this->screen->flags & SDL_FULLSCREEN) == SDL_FULLSCREEN )
|
|
||||||
{
|
#if 0
|
||||||
|
if ( (this->screen->flags & SDL_FULLSCREEN) == SDL_FULLSCREEN )
|
||||||
|
#endif
|
||||||
|
{
|
||||||
GDevice **odisplay;
|
GDevice **odisplay;
|
||||||
odisplay = GetGDevice();
|
odisplay = GetGDevice();
|
||||||
SetGDevice(SDL_Display);
|
SetGDevice(SDL_Display);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue