Skurdt / LibretroUnityFE

Example scenes on how to use the SK.Libretro package/library.
MIT License
17 stars 7 forks source link

Vecx core screen is blurry #13

Closed Vic20-Ian closed 3 years ago

Vic20-Ian commented 3 years ago

Vecx core loads and is playable but the screen is blurry

Skurdt commented 3 years ago

This is because core options cannot be retrieved properly from cores using the "newer" format. The issue is already listed here: https://github.com/Skurdt/SK.Libretro/issues/1#issue-795982854

In the meantime, you can add and tweak the options manually in "Assets/StreamingAssets/libretro~/core_options.json" as:

        {
            "CoreName": "vecx",
            "Options": [
                "vecx_res_multi;1;1|2|3|4;",
                "vecx_scale_x;0.845;0.845|0.85|0.855|0.86|0.865|0.87|0.875|0.88|0.885|0.89|0.895|0.90|0.905|0.91|0.915|0.92|0.925|0.93|0.935|0.94|0.945|0.95|0.955|0.96|0.965|0.97|0.975|0.98|0.985|0.99|0.995|1|1.005|1.01;",
                "vecx_scale_y;0.845;0.845|0.85|0.855|0.86|0.865|0.87|0.875|0.88|0.885|0.89|0.895|0.90|0.905|0.91|0.915|0.92|0.925|0.93|0.935|0.94|0.945|0.95|0.955|0.96|0.965|0.97|0.975|0.98|0.985|0.99|0.995|1|1.005|1.01;",
                "vecx_shift_x;-0.03;-0.03|-0.025|-0.02|-0.015|-0.01|-0.005|0|0.005|0.01|0.015|0.02|0.025|0.03;",
                "vecx_shift_y;-0.035;-0.035|-0.03|-0.025|-0.02|-0.015|-0.01|-0.005|0|0.005|0.01|0.015|0.02|0.025|0.03|0.035|0.04|0.045|0.05|0.055|0.06|0.065|0.07|0.075|0.08|0.085|0.09|0.095|0.1;",
                "vecx_use_hw;Software;Software|Hardware;"
            ]
        }