From 395ba5541cf8deb69e7d983986ef8dc08f332e19 Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Sat, 2 Nov 2019 18:28:50 +0100 Subject: [PATCH] - fixed startup and sound issues with Redneck Rampage. --- source/common/gamecontrol.h | 2 +- source/rr/src/sounds.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/common/gamecontrol.h b/source/common/gamecontrol.h index ce938b5f2..d84c700c8 100644 --- a/source/common/gamecontrol.h +++ b/source/common/gamecontrol.h @@ -124,7 +124,7 @@ enum GAMEFLAG_DUKEBETA = 0x00000060, // includes 0x20 since it's a shareware beta GAMEFLAG_FURY = 0x00000080, GAMEFLAG_RR = 0x00000100, - GAMEFLAG_RRRA = 0x00000300, + GAMEFLAG_RRRA = 0x00000200, GAMEFLAG_BLOOD = 0x00000400, GAMEFLAG_SW = 0x00000800, GAMEFLAG_STANDALONE = 0x00001000, diff --git a/source/rr/src/sounds.cpp b/source/rr/src/sounds.cpp index de7625bed..83c3bc4dc 100644 --- a/source/rr/src/sounds.cpp +++ b/source/rr/src/sounds.cpp @@ -441,7 +441,7 @@ int32_t S_LoadSound(int num) return 0; } - int32_t l = fp.Tell(); + int32_t l = fp.GetLength(); g_soundlocks[num] = 200; snd.siz = l; cacheAllocateBlock((intptr_t *)&snd.ptr, l, &g_soundlocks[num]);