aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorlukaslw2014-10-07 16:17:19 +0200
committerlukaslw2014-10-07 16:17:19 +0200
commitdcb85739fffbfcb9b1da72ecbfcb048875f93d62 (patch)
tree5e8b185ae5dea26a628f3446df87da89b4e9c03d /engines
parente894a18b08a524faa9392ee193fe96f4f2b3c3dd (diff)
downloadscummvm-rg350-dcb85739fffbfcb9b1da72ecbfcb048875f93d62.tar.gz
scummvm-rg350-dcb85739fffbfcb9b1da72ecbfcb048875f93d62.tar.bz2
scummvm-rg350-dcb85739fffbfcb9b1da72ecbfcb048875f93d62.zip
PRINCE: MusicPlayer - remove unnecessary comments
Diffstat (limited to 'engines')
-rw-r--r--engines/prince/sound.cpp9
-rw-r--r--engines/prince/sound.h7
2 files changed, 1 insertions, 15 deletions
diff --git a/engines/prince/sound.cpp b/engines/prince/sound.cpp
index 0f536973b6..e58e89d8f9 100644
--- a/engines/prince/sound.cpp
+++ b/engines/prince/sound.cpp
@@ -20,11 +20,6 @@
*
*/
-/*
- * This code is based on original Soltys source code
- * Copyright (c) 1994-1995 Janus B. Wisniewski and L.K. Avalon
- */
-
#include "prince/prince.h"
#include "prince/sound.h"
#include "prince/musNum.h"
@@ -136,10 +131,6 @@ MusicPlayer::MusicPlayer(PrinceEngine *vm) : _vm(vm) {
else
_driver->sendGMReset();
- // TODO: Load cmf.ins with the instrument table. It seems that an
- // interface for such an operation is supported for AdLib. Maybe for
- // this card, setting instruments is necessary.
-
_driver->setTimerCallback(this, &timerCallback);
}
}
diff --git a/engines/prince/sound.h b/engines/prince/sound.h
index b1711bd682..cc44b0a110 100644
--- a/engines/prince/sound.h
+++ b/engines/prince/sound.h
@@ -20,11 +20,6 @@
*
*/
-/*
- * This code is based on original Soltys source code
- * Copyright (c) 1994-1995 Janus B. Wisniewski and L.K. Avalon
- */
-
#ifndef PRINCE_SOUND_H
#define PRINCE_SOUND_H
@@ -63,7 +58,7 @@ public:
virtual void send(uint32 b);
virtual void sendToChannel(byte channel, uint32 b);
- static const char * _musTable[];
+ static const char *_musTable[];
static const uint8 _musRoomTable[];
};