mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-04-24 21:56:10 +03:00
[GH-ISSUE #2956] Wild Arms XF freezes when showing dialogs #1213
Labels
No labels
Atrac3+
Audio
CPU emulation
D3D11
D3D9 (removed)
Depth / Z
Feature Request
Font Atlas
GE emulation
Guardband / Range Culling
HLE/Kernel
I/O
Input/Controller
MP3
Multithreading
Needs hardware testing
Networking/adhoc/infrastructure
No Feedback / Outdated?
OpenGL
PGF / sceFont
PSMF / MPEG
Platform-specific (Android)
Platform-specific (Windows)
Platform-specific (iOS)
PowerVR GPU
SDL2
Saving issue
User Interface
Vulkan
arm64jit
armjit
armv6
x86jit
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/ppsspp#1213
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @unknownbrackets on GitHub (Jul 27, 2013).
Original GitHub issue: https://github.com/hrydgard/ppsspp/issues/2956
Not sure exactly what's wrong here. When you load or save, it locks up. It stops swapping frames, and never starts again. You don't see the dialog but it works.
This seems to be controlled by (u8 *)0x9CAAA7E. If that has a 1 written to it after the freeze, the game starts up again and runs great.
Could be something the dialog is doing wrong...
-[Unknown]
@unknownbrackets commented on GitHub (Jul 28, 2013):
Well, changing this in PPGe:
To:
Makes it work. The game only resets that value inside the GE callback. I wonder if the PSP actually uses callback 0, or if it's even a part of the struct somewhere we haven't figured out yet.
-[Unknown]
@unknownbrackets commented on GitHub (Jul 28, 2013):
Doesn't seem like that's correct or what the actual PSP does... hmm.
-[Unknown]
@unknownbrackets commented on GitHub (Aug 8, 2013):
Making
PPGeEnd()a no-op also fixes this (but of course you can't see anything.)-[Unknown]