Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -863,6 +863,7 @@ void W3DDisplay::init()
DEBUG_CRASH( ("Unable to set render device") );
return;
}
WW3D::Set_Texture_Bitdepth(getBitDepth());

//Check if level was never set and default to setting most suitable for system.
if (TheGameLODManager->getStaticLODLevel() == STATIC_GAME_LOD_UNKNOWN)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,6 @@ void W3DDisplay::init()
WW3D::Enable_Static_Sort_Lists(true);
WW3D::Set_Thumbnail_Enabled(false);
WW3D::Set_Screen_UV_Bias( TRUE ); ///< this makes text look good :)
WW3D::Set_Texture_Bitdepth(32);

setWindowed( TheGlobalData->m_windowed );

Expand Down Expand Up @@ -914,6 +913,7 @@ void W3DDisplay::init()
DEBUG_CRASH( ("Unable to set render device") );
return;
}
WW3D::Set_Texture_Bitdepth(getBitDepth());

//Check if level was never set and default to setting most suitable for system.
if (TheGameLODManager->getStaticLODLevel() == STATIC_GAME_LOD_UNKNOWN)
Expand Down
Loading