diff --git a/Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_Zelda.cpp b/Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_Zelda.cpp index c2096e953a..13d1160205 100644 --- a/Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_Zelda.cpp +++ b/Source/Plugins/Plugin_DSP_HLE/Src/UCodes/UCode_Zelda.cpp @@ -16,7 +16,7 @@ // http://code.google.com/p/dolphin-emu/ // Games that uses this UCode: -// Zelda: The Windwaker, Mario Sunshine, Mario Kart +// Zelda: The Windwaker, Mario Sunshine, Mario Kart, Twilight Princess #include "../Globals.h" #include "UCodes.h" diff --git a/Source/Plugins/Plugin_VideoOGL/Src/SConscript b/Source/Plugins/Plugin_VideoOGL/Src/SConscript index 8dacba06b5..a756cd31fb 100644 --- a/Source/Plugins/Plugin_VideoOGL/Src/SConscript +++ b/Source/Plugins/Plugin_VideoOGL/Src/SConscript @@ -99,6 +99,8 @@ else: # Libraries without pkg-config support. libs += [ 'GL', 'Cg', 'CgGL' ] + + if useSDL: compileFlags += [ '-DUSE_SDL=1' ] @@ -110,5 +112,5 @@ gfxenv.Append( gfxenv.SharedLibrary( '../../../../Binary/%s/Plugins/zeroogl.so' % platform, files, - LIBS = libs + LIBS = libs + gfxenv['LIBS'] )