Skip to content

Commit

Permalink
Merge branch 'release/3.0.3' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
JoeMatt committed Jan 24, 2025
2 parents c672964 + d2e0d49 commit e604473
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,8 +129,12 @@ jobs:
- name: Fakesign app
run: |
echo "Checking entitlements file..."
echo "Contents of Provenance directory:"
ls -la "Provenance/"
echo "Contents of ./ directory:"
ls -la "./"
echo "Contents of archive.xcarchive/Products/Applications/ directory:"
ls -la "archive.xcarchive/Products/Applications/"
echo "Checking app binary..."
ls -la "archive.xcarchive/Products/Applications/${{ matrix.APP_NAME }}.app/"
ldid -S"Provenance/Provenance-AppStore.entitlements" "archive.xcarchive/Products/Applications/${{ matrix.APP_NAME }}.app/${{ matrix.APP_NAME }}" || echo "::warning::Fakesign failed but continuing build"
Expand Down
6 changes: 4 additions & 2 deletions Cores/emuThree/PVEmuThreeCore/emuThree/CitraWrapper.mm
Original file line number Diff line number Diff line change
Expand Up @@ -153,8 +153,10 @@ -(void) setButtons {
}

-(void) setShaderOption {
Settings::values.use_hw_shader.SetValue([[NSUserDefaults standardUserDefaults] boolForKey:@"use_hw_shader"]);
Settings::values.shader_type.SetValue([[NSNumber numberWithInteger:[[NSUserDefaults standardUserDefaults] integerForKey:@"shader_type"]] unsignedIntValue]);
unsigned int shaderType = [[NSNumber numberWithInteger:[[NSUserDefaults standardUserDefaults] integerForKey:@"PVEmuThreeCore.Shader Acceleration / Graphic Accuracy"]] unsignedIntValue];

Settings::values.use_hw_shader.SetValue(shaderType >= 2);
Settings::values.shader_type.SetValue(shaderType);
Settings::Apply();
}

Expand Down

0 comments on commit e604473

Please sign in to comment.