mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
Enable fake mpeg mode by default.
Note: loaded save states will have it off. No UI yet.
This commit is contained in:
parent
b5b196ade4
commit
cf1295e95f
@ -79,6 +79,7 @@ DWORD TheThread(LPVOID x)
|
||||
coreParameter.pixelWidth = 480 * g_Config.iWindowZoom;
|
||||
coreParameter.pixelHeight = 272 * g_Config.iWindowZoom;
|
||||
coreParameter.startPaused = !g_Config.bAutoRun;
|
||||
coreParameter.useMediaEngine = false;
|
||||
|
||||
std::string error_string;
|
||||
if (!PSP_Init(coreParameter, &error_string))
|
||||
|
@ -67,6 +67,7 @@ EmuScreen::EmuScreen(const std::string &filename) : invalid_(true)
|
||||
coreParam.outputHeight = dp_yres;
|
||||
coreParam.pixelWidth = pixel_xres;
|
||||
coreParam.pixelHeight = pixel_yres;
|
||||
coreParam.useMediaEngine = false;
|
||||
std::string error_string;
|
||||
if (PSP_Init(coreParam, &error_string)) {
|
||||
invalid_ = false;
|
||||
|
@ -151,6 +151,7 @@ int main(int argc, const char* argv[])
|
||||
coreParameter.enableSound = false;
|
||||
coreParameter.headLess = true;
|
||||
coreParameter.printfEmuLog = true;
|
||||
coreParameter.useMediaEngine = false;
|
||||
|
||||
g_Config.bEnableSound = false;
|
||||
g_Config.bFirstRun = false;
|
||||
|
Loading…
Reference in New Issue
Block a user