mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-10 14:51:46 +00:00
Fixed ZDBSP seg splitter. On occasion it assigned the offset to the incorrect of the two segs created by a split.
SVN r118 (trunk)
This commit is contained in:
parent
6cd1e2ce6a
commit
bb25008804
2 changed files with 2 additions and 2 deletions
|
@ -359,7 +359,7 @@ int I_PickIWad (WadStuff *wads, int numwads)
|
|||
printf ("Please select a game wad:\n");
|
||||
for (i = 0; i < numwads; ++i)
|
||||
{
|
||||
char *filepart = strrchr (wads[i].Path, '/');
|
||||
const char *filepart = strrchr (wads[i].Path, '/');
|
||||
if (filepart == NULL)
|
||||
filepart = wads[i].Path;
|
||||
else
|
||||
|
|
|
@ -54,7 +54,7 @@ ACTOR PuzzGemRed : PuzzleItem 9004
|
|||
|
||||
// Green Gem 1 (Emerald Planet) ---------------------------------------------
|
||||
|
||||
ACTOR PuzzGemGreen : PuzzleItem 9005
|
||||
ACTOR PuzzGemGreen1 : PuzzleItem 9005
|
||||
{
|
||||
Game Hexen
|
||||
SpawnID 79
|
||||
|
|
Loading…
Reference in a new issue