[Bug 2455] Review request: pcsx2 - A Sony Playstation2 emulator

RPM Fusion Bugzilla noreply at rpmfusion.org
Sat Sep 15 11:50:12 CEST 2012


https://bugzilla.rpmfusion.org/show_bug.cgi?id=2455

--- Comment #27 from gregory.hainaut at gmail.com 2012-09-15 11:50:12 CEST ---
Yes I know. It is the same for others distributions. Anyway what I wanted to
say is that you could use the flags but you must test them.


Actually we already do a check. Here the code snippet. Note that I can change
the warning message to a fatal error if you like (message was probably not
updated since the drop of scalar code).

static void CpuCheckSSE2()
{
    if( x86caps.hasStreamingSIMD2Extensions ) return;

    // Only check once per process session:
    static bool checked = false;
    if( checked ) return;
    checked = true;

    wxDialogWithHelpers exconf( NULL, _("PCSX2 - SSE2 Recommended") );

    exconf += exconf.Heading( pxE( L"Warning: Your computer does not support
SSE2, which is required by many PCSX2 recompilers and plugins. Your options
will be limited and emulation will be *very* slow." )
    );

    pxIssueConfirmation( exconf, MsgButtons().OK(), L"Error.Startup.NoSSE2" );
.....

-- 
Configure bugmail: https://bugzilla.rpmfusion.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
You are the assignee for the bug.


More information about the rpmfusion-developers mailing list