>>34160697Any time you see Qt
>Qt5.9.2>Qt5.9.1This is just the version of the program used to build the user interface you see, so I don't think that any of them will impact on how fast you run the game.
---
Now, you can get a better, faster and custom build by getting the source code of the build sickc build (I think this is it?
https://github.com/sickc/citra/commits/sandbox) and building it yourself using flags like
-O3 -mtune=native -march=native
↑ If you are compiling from the source code. Those flags I've specified above should give you the maximum speed because as far as I can see your processor is gen 3 (ivy bridge) but there is no specific build that is making use of your ivy bridge optimisations (eg -mtune=ivybridge or -mtune=native - if you write down native, it will just auto detect what processor you have)
Now the ones generated by sickc are going to be something like -mtune=haswell or -mtune=generic but Haswell refers to 4th gen (and so on, as you can see there is no ivy bridge/3rd gen build) and the only one you can really run there is generic (which will run on any processor but is slower). So although the sickc builds are the "best" they aren't as good as you could get if you compile it yourself.