mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 05:38:50 +00:00
Misc warning fixes.
One of the fixes in Source/Plugins/Plugin_VideoOGL/Src/Render.cpp (for an uninitialized variable) looks like it could actually have real-world effects; someone familiar with the code should check that the fix is correct. git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@3669 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
3034a9fcfc
commit
3c41c4dacf
5 changed files with 6 additions and 10 deletions
|
@ -158,7 +158,7 @@ void Shutdown()
|
|||
s_rgbToYuyvProgram.Destroy();
|
||||
s_yuyvToRgbProgram.Destroy();
|
||||
|
||||
for (int i = 0; i < NUM_ENCODING_PROGRAMS; i++)
|
||||
for (unsigned int i = 0; i < NUM_ENCODING_PROGRAMS; i++)
|
||||
s_encodingPrograms[i].Destroy();
|
||||
|
||||
s_srcTexture = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue