You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Doom 3 BFG Edition added par time information for "Thy Flesh Consumed," which was missing in the original release of Ultimate Doom.
The source code for BFG Edition includes this info:
// DHM - Nerve :: Added episode 4 par times
// DOOM Par Times
const int pars[5][10] =
{
{0},
{0,30,75,120,90,165,180,180,30,165},
{0,90,90,90,120,90,360,240,30,170},
{0,90,45,90,150,90,90,165,30,135},
{0,165,255,135,150,180,390,135,360,180}
};
A similar section exists in the code for this core:
// DOOM Par Times
int pars[4][10] = {
{0},
{0,30,75,120,90,165,180,180,30,165},
{0,90,90,90,120,90,360,240,30,170},
{0,90,45,90,150,90,90,165,30,135}
};
I know there will be other things "hooked-up" to this code that would need to be seen to, but I wouldn't know where they are, or what to do to them. I'm not clever enough to figure that out.
The text was updated successfully, but these errors were encountered:
Doom 3 BFG Edition added par time information for "Thy Flesh Consumed," which was missing in the original release of Ultimate Doom.
The source code for BFG Edition includes this info:
A similar section exists in the code for this core:
I know there will be other things "hooked-up" to this code that would need to be seen to, but I wouldn't know where they are, or what to do to them. I'm not clever enough to figure that out.
The text was updated successfully, but these errors were encountered: