From 1a27617a956d34acf50d7702fa4bb301107517e7 Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Thu, 30 Dec 2004 14:54:40 +0000 Subject: Renamed the "placard" opcode functions. They should be reasonably bug free now. svn-id: r16387 --- saga/sfuncs.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'saga/sfuncs.cpp') diff --git a/saga/sfuncs.cpp b/saga/sfuncs.cpp index e5a74aefea..55e0eae7ab 100644 --- a/saga/sfuncs.cpp +++ b/saga/sfuncs.cpp @@ -95,8 +95,8 @@ void Script::setupScriptFuncList(void) { OPCODE(SF_walkRelative), OPCODE(SF_moveRelative), OPCODE(SF_simulSpeech2), - OPCODE(SF_placard), - OPCODE(SF_placardOff), + OPCODE(sfPlacard), + OPCODE(sfPlacardOff), OPCODE(SF_setProtagState), OPCODE(sfResumeBgdAnim), OPCODE(SF_throwActor), @@ -921,7 +921,7 @@ int Script::SF_simulSpeech2(SCRIPTFUNC_PARAMS) { } // Script function #48 (0x30) -int Script::SF_placard(SCRIPTFUNC_PARAMS) { +int Script::sfPlacard(SCRIPTFUNC_PARAMS) { GAME_DISPLAYINFO disp_info; SURFACE *back_buf = _vm->_gfx->getBackBuffer(); PALENTRY cur_pal[PAL_ENTRIES]; @@ -955,7 +955,7 @@ int Script::SF_placard(SCRIPTFUNC_PARAMS) { } // Script function #49 (0x31) -int Script::SF_placardOff(SCRIPTFUNC_PARAMS) { +int Script::sfPlacardOff(SCRIPTFUNC_PARAMS) { SURFACE *back_buf = _vm->_gfx->getBackBuffer(); PALENTRY cur_pal[PAL_ENTRIES]; PALENTRY *pal; -- cgit v1.2.3