mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-02 22:29:21 +00: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
1 changed files with 1 additions and 1 deletions
|
@ -134,7 +134,7 @@ static void CreatePrograms()
|
||||||
|
|
||||||
static SHADER &GetOrCreateEncodingShader(u32 format)
|
static SHADER &GetOrCreateEncodingShader(u32 format)
|
||||||
{
|
{
|
||||||
if (format > NUM_ENCODING_PROGRAMS)
|
if (format >= NUM_ENCODING_PROGRAMS)
|
||||||
{
|
{
|
||||||
PanicAlert("Unknown texture copy format: 0x%x\n", format);
|
PanicAlert("Unknown texture copy format: 0x%x\n", format);
|
||||||
return s_encodingPrograms[0];
|
return s_encodingPrograms[0];
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue