diff options
author | Filippos Karapetis | 2009-04-03 08:10:58 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-04-03 08:10:58 +0000 |
commit | c4e054848e8c21aa982d32b1eca9daafbd904a55 (patch) | |
tree | c0391ea0d4d09f955cc522c86ced3d38a04b7b6d /engines/sci | |
parent | faa252391c7bcc2c482f5ac9617ac0205ebdd353 (diff) | |
download | scummvm-rg350-c4e054848e8c21aa982d32b1eca9daafbd904a55.tar.gz scummvm-rg350-c4e054848e8c21aa982d32b1eca9daafbd904a55.tar.bz2 scummvm-rg350-c4e054848e8c21aa982d32b1eca9daafbd904a55.zip |
Changed some references from "FreeSCI" to "SCI" or "ScummVM"
svn-id: r39807
Diffstat (limited to 'engines/sci')
-rw-r--r-- | engines/sci/engine/game.cpp | 2 | ||||
-rw-r--r-- | engines/sci/engine/kstring.cpp | 2 | ||||
-rw-r--r-- | engines/sci/engine/scriptdebug.cpp | 2 | ||||
-rw-r--r-- | engines/sci/engine/seg_manager.cpp | 2 | ||||
-rw-r--r-- | engines/sci/gfx/gfx_tools.h | 2 | ||||
-rw-r--r-- | engines/sci/scicore/resource.h | 2 | ||||
-rw-r--r-- | engines/sci/sfx/sequencer.h | 2 | ||||
-rw-r--r-- | engines/sci/sfx/softseq/SN76496.cpp | 2 | ||||
-rw-r--r-- | engines/sci/sfx/softseq/pcspeaker.cpp | 2 |
9 files changed, 9 insertions, 9 deletions
diff --git a/engines/sci/engine/game.cpp b/engines/sci/engine/game.cpp index 400626844e..3da6caa54d 100644 --- a/engines/sci/engine/game.cpp +++ b/engines/sci/engine/game.cpp @@ -228,7 +228,7 @@ int game_init_graphics(EngineState *s) { #ifdef CUSTOM_GRAPHICS_OPTIONS #ifndef WITH_PIC_SCALING if (s->gfx_state->options->pic0_unscaled == 0) - warning("Pic scaling was disabled; your version of FreeSCI has no support for scaled pic drawing built in."); + warning("Pic scaling was disabled; your version of ScummVM has no support for scaled pic drawing built in."); s->gfx_state->options->pic0_unscaled = 1; #endif diff --git a/engines/sci/engine/kstring.cpp b/engines/sci/engine/kstring.cpp index 61c7ee6d47..1fc72c2ede 100644 --- a/engines/sci/engine/kstring.cpp +++ b/engines/sci/engine/kstring.cpp @@ -714,7 +714,7 @@ reg_t kGetFarText(EngineState *s, int funct_nr, int argc, reg_t *argv) { return argv[2]; } -#define DUMMY_MESSAGE "No MESSAGE support in FreeSCI yet" +#define DUMMY_MESSAGE "No MESSAGE support in SCI yet" static MessageState state; diff --git a/engines/sci/engine/scriptdebug.cpp b/engines/sci/engine/scriptdebug.cpp index 1e5b25271d..c18a2c31db 100644 --- a/engines/sci/engine/scriptdebug.cpp +++ b/engines/sci/engine/scriptdebug.cpp @@ -2328,7 +2328,7 @@ const generic_config_flag_t SCIk_Debug_Names[SCIk_DEBUG_MODES] = { {"File I/O", 'F', (1 << 13)}, {"Time", 't', (1 << 14)}, {"Room numbers", 'r', (1 << 15)}, - {"FreeSCI 0.3.3 kernel emulation", 'e', (1 << 16)}, + {"SCI 0.3.3 kernel emulation", 'e', (1 << 16)}, {"Pathfinding", 'P', (1 << SCIkAVOIDPATH_NR)} } ; diff --git a/engines/sci/engine/seg_manager.cpp b/engines/sci/engine/seg_manager.cpp index 3dec401b19..f95a3dc42e 100644 --- a/engines/sci/engine/seg_manager.cpp +++ b/engines/sci/engine/seg_manager.cpp @@ -179,7 +179,7 @@ void SegManager::setScriptSize(MemObject *mem, EngineState *s, int script_nr) { if (mem->data.script.buf_size > 65535) { sciprintf("Script and heap sizes combined exceed 64K.\n" - "This means a fundamental design bug was made in FreeSCI\n" + "This means a fundamental design bug was made in SCI\n" "regarding SCI1.1 games.\nPlease report this so it can be" "fixed in the next major version!\n"); return; diff --git a/engines/sci/gfx/gfx_tools.h b/engines/sci/gfx/gfx_tools.h index 4d3c047bf7..5425febe0f 100644 --- a/engines/sci/gfx/gfx_tools.h +++ b/engines/sci/gfx/gfx_tools.h @@ -23,7 +23,7 @@ * */ -/* FreeSCI 0.3.1+ graphics subsystem helper functions */ +/* SCI 0.3.1+ graphics subsystem helper functions */ #ifndef SCI_GFX_GFX_TOOLS_H diff --git a/engines/sci/scicore/resource.h b/engines/sci/scicore/resource.h index 75ad99f5b9..2f8abf8170 100644 --- a/engines/sci/scicore/resource.h +++ b/engines/sci/scicore/resource.h @@ -186,7 +186,7 @@ public: int _volVersion; // RESOURCE.0xx version /** - * Creates a new FreeSCI resource manager. + * Creates a new SCI resource manager. * @param version The SCI version to look for; use SCI_VERSION_AUTODETECT * in the default case. * @param maxMemory Maximum number of bytes to allow allocated for resources diff --git a/engines/sci/sfx/sequencer.h b/engines/sci/sfx/sequencer.h index a5c5473b32..f2f394e6b3 100644 --- a/engines/sci/sfx/sequencer.h +++ b/engines/sci/sfx/sequencer.h @@ -60,7 +60,7 @@ struct sfx_sequencer_t { ** 'patch' and 'patch_len' refer to the patch resource passed to open, ** as specified by the 'patchfile' property. 'patch' may be NULL if the ** resource wasn't found. - ** For more information regarding patch resources, please refer to the + ** For more information regarding patch resources, please refer to the ** FreeSCI documentation, particularly the part regarding 'patch.*' resource ** data. */ diff --git a/engines/sci/sfx/softseq/SN76496.cpp b/engines/sci/sfx/softseq/SN76496.cpp index 1d736d36c7..f63f75ea71 100644 --- a/engines/sci/sfx/softseq/SN76496.cpp +++ b/engines/sci/sfx/softseq/SN76496.cpp @@ -23,7 +23,7 @@ * */ -/* Tandy/PCJr sequencer for FreeSCI */ +/* Tandy/PCJr sequencer for SCI */ #include "sci/sfx/softseq.h" #include "sci/sfx/sci_midi.h" diff --git a/engines/sci/sfx/softseq/pcspeaker.cpp b/engines/sci/sfx/softseq/pcspeaker.cpp index 6b6da1f001..c72a71d34b 100644 --- a/engines/sci/sfx/softseq/pcspeaker.cpp +++ b/engines/sci/sfx/softseq/pcspeaker.cpp @@ -23,7 +23,7 @@ * */ -/* PC speaker software sequencer for FreeSCI */ +/* PC speaker software sequencer for SCI */ #include "sci/sfx/softseq.h" #include "sci/sfx/sci_midi.h" |