mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-21 05:09:34 -06:00
Audio system update - HLE plugin submitted, homebrew has sound, and also Mario movies!! (this was very unexpected). This also acts as a frame limiter. Might provide an option to turn it off in the future.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@227 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
@ -18,6 +18,8 @@
|
||||
#include "Globals.h"
|
||||
#include <list>
|
||||
|
||||
#include <mmsystem.h>
|
||||
|
||||
#include "GLInit.h"
|
||||
#include "Render.h"
|
||||
#include "OpcodeDecoding.h"
|
||||
@ -355,7 +357,7 @@ bool Renderer::Initialize()
|
||||
|
||||
void Renderer::AddMessage(const char* pstr, u32 ms)
|
||||
{
|
||||
s_listMsgs.push_back(MESSAGE(pstr, timeGetTime()+ms));
|
||||
s_listMsgs.push_back(MESSAGE(pstr, timeGetTime() + ms));
|
||||
}
|
||||
|
||||
void Renderer::ProcessMessages()
|
||||
|
Reference in New Issue
Block a user