aboutsummaryrefslogtreecommitdiff
path: root/sword2/sword2.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2005-05-12 13:12:15 +0000
committerTorbjörn Andersson2005-05-12 13:12:15 +0000
commitd34e5fc605b06c0ad8f5ac7e6ccbc6f8698ddec2 (patch)
tree38056f06dfb05964f15f120be8d9aaaf20f339b6 /sword2/sword2.cpp
parentd6a20a231b30242645860f453895f11d67a624e5 (diff)
downloadscummvm-rg350-d34e5fc605b06c0ad8f5ac7e6ccbc6f8698ddec2.tar.gz
scummvm-rg350-d34e5fc605b06c0ad8f5ac7e6ccbc6f8698ddec2.tar.bz2
scummvm-rg350-d34e5fc605b06c0ad8f5ac7e6ccbc6f8698ddec2.zip
Whitespace: "(type *)something" instead of "(type *) something", because
that's how we write it in most other places. svn-id: r18069
Diffstat (limited to 'sword2/sword2.cpp')
-rw-r--r--sword2/sword2.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/sword2/sword2.cpp b/sword2/sword2.cpp
index 1e2858cd0f..9daced6548 100644
--- a/sword2/sword2.cpp
+++ b/sword2/sword2.cpp
@@ -221,7 +221,7 @@ void Sword2Engine::writeSettings() {
*/
void Sword2Engine::setupPersistentResources() {
- Logic::_scriptVars = (uint32 *) (_resman->openResource(1) + sizeof(StandardHeader));
+ Logic::_scriptVars = (uint32 *)(_resman->openResource(1) + sizeof(StandardHeader));
_resman->openResource(CUR_PLAYER_ID);
}
@@ -592,8 +592,8 @@ void Sword2Engine::startGame() {
uint32 null_pc = 1;
- char *raw_data_ad = (char *) _resman->openResource(CUR_PLAYER_ID);
- char *raw_script = (char *) _resman->openResource(screen_manager_id);
+ char *raw_data_ad = (char *)_resman->openResource(CUR_PLAYER_ID);
+ char *raw_script = (char *)_resman->openResource(screen_manager_id);
_logic->runScript(raw_script, raw_data_ad, &null_pc);