Emulator Issues #6844
closedLegend of Zelda, The - Ocarina of Time - Master Quest (Europe) (En,Fr,De)
0%
Description
READ THIS: https://forums.dolphin-emu.org/showthread.php?pid=276132 <<<
Your answers are there!
Game Name? Legend of Zelda, The - Ocarina of Time - Master Quest (Europe) (En,Fr,De)
Game ID? (i do not understand what this one is for?)
What went wrong? I Went into the shop at the begining of the game, after i defeated to first boss, Then it crashed and can't be opend without it crashes (log report below)
What did you expect to happen instead? Be able to continue playing and Atleast starting the game again.
What steps will reproduce the problem?
[Don't assume we have played the game and know its level names. Be as
detailed as possible.]
1.Enter a saved file.
2.Defeat the first boss
3.Enter the shop where you could buy your shield
Dolphin 3.5 and Dolphin 3.5-367 are old versions of Dolphin that have
known issues and bugs. Have you tested with the latest version from
http://dolphin-emu.org/download ?
Which versions of Dolphin did you test on?
3.5 and 4.0
Which version of Dolphin used to work? 3.5 - 4.0
What are your PC specifications (example: Operating System, CPU and GPU)?
64 or 32 bit Operating System?
64 Bit
64 or 32 bit Dolphin?
64 Bit
Any other relevant information (e.g. logs, screenshots, configuration
files)
[Upload big files to a hosting service and post links here!]
Do not attach files to this issue. Upload them to another site and
link here. Use imgur.com for images and pastie.org for logs.
Updated by Scarygamming almost 11 years ago
You need to enter the shop at the start area, Not any other, Forgot to write that
Updated by Scarygamming almost 11 years ago
Problem solved I had to download another game, start that one up, close it and Then it was playable again :P
Updated by NeoBrainX almost 11 years ago
@Scarygamming: We don't want any pirates here, so don't use our issue tracker. Any reports of yours will just be closed as invalid anyway, so it's useless.
Updated by Scarygamming almost 11 years ago
What do you mean with pirate? i own the game very own to all consoles. But playing on pc is better
Updated by magcius almost 11 years ago
I was told not to say "lol no" again, so let me be more clear: you're a terrible bug reporter.
If you don't understand half the fields in our bug report, please don't click "Submit issue".
If you include which scene release of a game you're playing, please don't click "Submit issue".
If you haven't read the linked forum post, as you clearly haven't, please don't click "Submit issue".
Actually, if you haven't even read the actual questions it was asking you, as clearly haven't, please don't click "Submit issue"
Never use our issue tracker again.
Updated by comexk almost 11 years ago
fwiw, there is almost certainly an actual bug here. And it is probably this:
void *retval = mmap(
base, size,
PROT_READ | PROT_WRITE,
MAP_SHARED | ((base == nullptr) ? 0 : MAP_FIXED),
fd, offset);
if (retval == MAP_FAILED)
{
NOTICE_LOG(MEMMAP, "mmap on %s failed", ram_temp_file);
return nullptr;
}
NOTICE_LOG is inadequate for something that will probably result in a crash.