R_GetModeInfo() doesn't need to be public on OSX

Remove redundant special case.
This commit is contained in:
dhewg 2012-01-02 20:05:02 +01:00
parent 1fed72fbb4
commit 522c5bbccf

View file

@ -568,11 +568,7 @@ vidmode_t r_vidModes[] = {
};
static int s_numVidModes = ( sizeof( r_vidModes ) / sizeof( r_vidModes[0] ) );
#if MACOS_X
bool R_GetModeInfo( int *width, int *height, int mode ) {
#else
static bool R_GetModeInfo( int *width, int *height, int mode ) {
#endif
vidmode_t *vm;
if ( mode < -1 ) {