Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
ogl: fix vertex stream detection
sorry, copy & paste fail
  • Loading branch information
degasus committed Aug 29, 2013
1 parent c5a8861 commit c9afd83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Source/Plugins/Plugin_VideoOGL/Src/StreamBuffer.cpp
Expand Up @@ -26,7 +26,7 @@ StreamBuffer::StreamBuffer(u32 type, size_t size, StreamType uploadType)
if(m_uploadtype & STREAM_DETECT)
{
// TODO: move this to InitBackendInfo
if(g_ActiveConfig.bHackedBufferUpload && !DriverDetails::HasBug(DriverDetails::BUG_BROKENHACKEDBUFFER))
if(g_ActiveConfig.bHackedBufferUpload && DriverDetails::HasBug(DriverDetails::BUG_BROKENHACKEDBUFFER))
{
OSD::AddMessage("Vertex Streaming Hack isn't supported by your GPU.", 10000);
g_ActiveConfig.bHackedBufferUpload = false;
Expand Down

0 comments on commit c9afd83

Please sign in to comment.