Compare commits

...

3 Commits

Author SHA1 Message Date
TheTechnician27
319ec1f774 OSD: Fix performance overlay overwriting dump stats when shifted left 2025-05-24 12:33:32 +02:00
JohnSmith774
2079532e83 GameDB: Add memcard filters for some NTSC-J titles. (#12708)
Add memcard filters for OutRun2 SP - SPECIAL TOURS.
Add memcard filters for Another Century's Episode 2 Special Vocal Version.
Add memcard filters for Armored Core - Last Raven.
2025-05-24 12:32:03 +02:00
Mrlinkwii
de1d646fe9 github-workflows: Fix a broken link. 2025-05-24 12:30:08 +02:00
3 changed files with 16 additions and 3 deletions

View File

@@ -19,7 +19,7 @@ jobs:
pr-message: |-
## Thank you for submitting a contribution to PCSX2
As this is your first pull request, [please be aware of the contributing guidelines](https://github.com/PCSX2/pcsx2/blob/master/.github/CONTRIBUTING.md).
As this is your first pull request, [please be aware of the contributing guidelines](https://pcsx2.net/docs/contributing/).
Additionally, as per recent changes in GitHub Actions, your pull request will need to be approved by a maintainer before GitHub Actions can run against it. [You can find more information about this change here.](https://github.blog/2021-04-22-github-actions-update-helping-maintainers-combat-bad-actors/)

View File

@@ -49579,6 +49579,8 @@ SLPM-66628:
autoFlush: 2 # Reduces post-processing misalignment.
halfPixelOffset: 2 # Fixes bloom misalignment still a bit misaligned.
roundSprite: 1 # Fixes bloom misalignment still a bit misaligned + font artifacts.
memcardFilters:
- "SLPM-66643"
SLPM-66629:
name: "ダージュ・オブ・ケルベロス -ファイナルファンタジーⅫ - インターナショナル [Ultimate Hits]"
name-sort: "だーじゅ・おぶ・けるべろす ふぁいなるふぁんたじー7 いんたーなしょなる [Ultimate Hits]"
@@ -52274,6 +52276,14 @@ SLPM-68520:
halfPixelOffset: 2 # Corrects shadow alignment and reduces blurriness.
recommendedBlendingLevel: 3 # Fixes level and map menu brightness.
preloadFrameData: 1 # Fixes glowing emblems.
memcardFilters:
- "SLPS-25338"
- "SLPS-25339"
- "SLPS-73202"
- "SLPS-73203"
- "SLPS-25408"
- "SLPS-25462"
- "SLPS-73247"
SLPM-68521:
name: ".hack//frägment [先行リリース版]"
name-sort: "どっとはっく fragment [せんこうりりーすばん]"
@@ -60608,6 +60618,9 @@ SLPS-25829:
region: "NTSC-J"
gsHWFixes:
nativeScaling: 1 # Fixes post processing.
memcardFilters:
- "SLPS-25394"
- "SLPS-25623"
SLPS-25830:
name: "ゼロの使い魔 夢魔が紡ぐ夜風の幻想曲 [限定版]"
name-sort: "ぜろのつかいま むまがつむぐよかぜのげんそうきょく [げんていばん]"

View File

@@ -379,8 +379,8 @@ void GSDumpReplayer::RenderUI()
do \
{ \
text_size = font->CalcTextSizeA(font->FontSize, std::numeric_limits<float>::max(), -1.0f, (text), nullptr, nullptr); \
dl->AddText(font, font->FontSize, ImVec2(margin + shadow_offset, position_y + shadow_offset), IM_COL32(0, 0, 0, 100), (text)); \
dl->AddText(font, font->FontSize, ImVec2(margin, position_y), color, (text)); \
dl->AddText(font, font->FontSize, ImVec2(GSConfig.OsdPerformancePos == OsdOverlayPos::TopLeft ? ImGuiManager::GetWindowWidth() - margin - text_size.x + shadow_offset : margin + shadow_offset, position_y + shadow_offset), IM_COL32(0, 0, 0, 100), (text)); \
dl->AddText(font, font->FontSize, ImVec2(GSConfig.OsdPerformancePos == OsdOverlayPos::TopLeft ? ImGuiManager::GetWindowWidth() - margin - text_size.x : margin, position_y), color, (text)); \
position_y += text_size.y + spacing; \
} while (0)