mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2026-06-19 23:05:32 -05:00
Merge pull request #618 from lioncash/array-bounds
OGL: Correctly guard against array bounds of s_encodingPrograms
This commit is contained in:
commit
72b15be3be
|
|
@ -134,7 +134,7 @@ static void CreatePrograms()
|
|||
|
||||
static SHADER &GetOrCreateEncodingShader(u32 format)
|
||||
{
|
||||
if (format > NUM_ENCODING_PROGRAMS)
|
||||
if (format >= NUM_ENCODING_PROGRAMS)
|
||||
{
|
||||
PanicAlert("Unknown texture copy format: 0x%x\n", format);
|
||||
return s_encodingPrograms[0];
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user