Skip to content

Commit

Permalink
DisplayMode: Updated dummy implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Apr 2, 2012
1 parent 69989ef commit b6f04c2
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions doomsday/engine/portable/src/displaymode_dummy.c
Expand Up @@ -52,3 +52,13 @@ int DisplayMode_Native_Change(const DisplayMode* mode, boolean shouldCapture)
DENG_UNUSED(shouldCapture);
return true;
}

void DisplayMode_Native_GetColorTransfer(displaycolortransfer_t* colors)
{
DENG_UNUSED(colors);
}

void DisplayMode_Native_SetColorTransfer(const displaycolortransfer_t* colors)
{
DENG_UNUSED(colors);
}

0 comments on commit b6f04c2

Please sign in to comment.