diff --git a/sc2/ChangeLog b/sc2/ChangeLog index 7e63cb19e..9432df8c7 100644 --- a/sc2/ChangeLog +++ b/sc2/ChangeLog @@ -1,4 +1,5 @@ Changes towards version 0.8: +- Removed obsolete RESPONSE_TO_REF - SvdB - Don't require the 'shadow' dir in addon packs, from Alex - Make use of GAME_STATE_FILE consistently, from Scott A. Colcord - Fixed unconst(), from Scott A. Colcord diff --git a/sc2/src/uqm/comm/mycon/myconc.c b/sc2/src/uqm/comm/mycon/myconc.c index 326bb1253..4152c69b0 100644 --- a/sc2/src/uqm/comm/mycon/myconc.c +++ b/sc2/src/uqm/comm/mycon/myconc.c @@ -371,7 +371,7 @@ NormalMycon (RESPONSE_REF R) DoRamble (R); NPCPhrase (RAMBLE_TAIL); - DISABLE_PHRASE (RESPONSE_TO_REF (R)); + DISABLE_PHRASE (R); } if ((BYTE)TFB_Random () < 256 * 30 / 100) diff --git a/sc2/src/uqm/commglue.h b/sc2/src/uqm/commglue.h index f9ebe6f93..b6aa8dcd9 100644 --- a/sc2/src/uqm/commglue.h +++ b/sc2/src/uqm/commglue.h @@ -69,7 +69,6 @@ extern UNICODE shared_phrase_buf[2048]; (*(UNICODE *)GetStringAddress ( \ SetAbsStringTableIndex (CommData.ConversationPhrases, (p)-1) \ ) = '\0') -#define RESPONSE_TO_REF(R) (R) #define Response(i,a) \ DoResponsePhrase(i,(RESPONSE_FUNC)a,0)