diff options
author | Eugene Sandulenko | 2016-09-03 12:46:38 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-09-03 12:46:38 +0200 |
commit | fab199d37eab7345a8dff6bd44cbf261e32a878c (patch) | |
tree | 928c92780cc2f10402e6b3f0e90d73f2c1a4dd27 /engines/access | |
parent | 87eef75a26bde46f3abafef08b6ad75a4dd12060 (diff) | |
download | scummvm-rg350-fab199d37eab7345a8dff6bd44cbf261e32a878c.tar.gz scummvm-rg350-fab199d37eab7345a8dff6bd44cbf261e32a878c.tar.bz2 scummvm-rg350-fab199d37eab7345a8dff6bd44cbf261e32a878c.zip |
JANITORIAL: Make GPL headers uniform
Diffstat (limited to 'engines/access')
-rw-r--r-- | engines/access/martian/martian_game.cpp | 12 | ||||
-rw-r--r-- | engines/access/martian/martian_game.h | 4 | ||||
-rw-r--r-- | engines/access/martian/martian_resources.cpp | 6 | ||||
-rw-r--r-- | engines/access/martian/martian_resources.h | 4 | ||||
-rw-r--r-- | engines/access/martian/martian_room.cpp | 4 | ||||
-rw-r--r-- | engines/access/martian/martian_room.h | 4 | ||||
-rw-r--r-- | engines/access/martian/martian_scripts.cpp | 16 | ||||
-rw-r--r-- | engines/access/martian/martian_scripts.h | 4 |
8 files changed, 27 insertions, 27 deletions
diff --git a/engines/access/martian/martian_game.cpp b/engines/access/martian/martian_game.cpp index 00ee6c9776..5382cd9880 100644 --- a/engines/access/martian/martian_game.cpp +++ b/engines/access/martian/martian_game.cpp @@ -8,12 +8,12 @@ * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. - + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. @@ -107,7 +107,7 @@ void MartianEngine::displayNote(const Common::String &msg) { _screen->_maxChars = 40; _screen->_printOrg = _screen->_printStart = Common::Point(59, 124); - + setNoteParams(); Common::String lines = msg; @@ -158,7 +158,7 @@ void MartianEngine::doSpecial5(int param1) { msg += c; displayNote(msg); - + _midi->stopSong(); _midi->freeMusic(); @@ -348,10 +348,10 @@ void MartianEngine::dead(int deathId) { _screen->_maxChars = 50; _screen->_printOrg = Common::Point(24, 18); _screen->_printStart = Common::Point(24, 18); - + // Display death message showDeathText(_deaths[deathId]._msg); - + _screen->forceFadeOut(); _room->clearRoom(); freeChar(); diff --git a/engines/access/martian/martian_game.h b/engines/access/martian/martian_game.h index 9ef6c05c29..41a918ff81 100644 --- a/engines/access/martian/martian_game.h +++ b/engines/access/martian/martian_game.h @@ -8,12 +8,12 @@ * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. - + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/engines/access/martian/martian_resources.cpp b/engines/access/martian/martian_resources.cpp index 070fa0f7e3..2b0479a005 100644 --- a/engines/access/martian/martian_resources.cpp +++ b/engines/access/martian/martian_resources.cpp @@ -8,12 +8,12 @@ * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. - + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. @@ -58,7 +58,7 @@ const byte ICON_PALETTE[] = { 0x00, 0x0A, 0x1A, 0x00, 0x0D, 0x1F, 0x00, 0x11, 0x28, 0x00, 0x15, 0x30, 0x00, 0x19, 0x39, 0x00, 0x1B, 0x3F, - 0x00, 0x2D, 0x3A + 0x00, 0x2D, 0x3A }; const int RMOUSE[10][2] = { diff --git a/engines/access/martian/martian_resources.h b/engines/access/martian/martian_resources.h index 46cf6a71c1..76765aad5a 100644 --- a/engines/access/martian/martian_resources.h +++ b/engines/access/martian/martian_resources.h @@ -8,12 +8,12 @@ * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. - + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/engines/access/martian/martian_room.cpp b/engines/access/martian/martian_room.cpp index 0b8b4a842a..80632a03a2 100644 --- a/engines/access/martian/martian_room.cpp +++ b/engines/access/martian/martian_room.cpp @@ -8,12 +8,12 @@ * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. - + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/engines/access/martian/martian_room.h b/engines/access/martian/martian_room.h index 11501b6e57..7066a688de 100644 --- a/engines/access/martian/martian_room.h +++ b/engines/access/martian/martian_room.h @@ -8,12 +8,12 @@ * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. - + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. diff --git a/engines/access/martian/martian_scripts.cpp b/engines/access/martian/martian_scripts.cpp index a9b5de5597..5966bc9af1 100644 --- a/engines/access/martian/martian_scripts.cpp +++ b/engines/access/martian/martian_scripts.cpp @@ -8,12 +8,12 @@ * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. - + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. @@ -50,7 +50,7 @@ void MartianScripts::cmdSpecial0() { _vm->_files->loadScreen("HOUSE.SC"); _vm->_video->setVideo(_vm->_screen, Common::Point(46, 30), "HVID.VID", 20); - + do { _vm->_video->playVideo(); if (_vm->_video->_videoFrame == 4) { @@ -77,7 +77,7 @@ void MartianScripts::cmdSpecial0() { void MartianScripts::cmdSpecial1(int param1) { _vm->_events->hideCursor(); - + if (param1 != -1) { _vm->_files->loadScreen(49, param1); _vm->_buffer2.copyBuffer(_vm->_screen); @@ -185,7 +185,7 @@ void MartianScripts::cmdSpecial7() { _vm->_scripts->_sequence = 0; _vm->_sound->playSound(0); - + do { charLoop(); } while (_vm->_flags[134] != 1); @@ -229,7 +229,7 @@ void MartianScripts::cmdSpecial7() { _vm->_events->hideCursor(); _vm->_video->setVideo(_vm->_screen, Common::Point(120, 16), FileIdent(40, 5), 10); - + while (!_vm->shouldQuit() && !_vm->_video->_videoEnd) { _vm->_video->playVideo(); _vm->_events->pollEventsAndWait(); @@ -246,7 +246,7 @@ void MartianScripts::cmdSpecial7() { _vm->_screen->forceFadeOut(); _vm->_files->loadScreen(40, 7); _vm->_destIn = _vm->_screen; - + _vm->_screen->plotImage(_game->_spec7Objects, 8, Common::Point(104, 176)); _vm->_screen->plotImage(_game->_spec7Objects, 7, Common::Point(102, 160)); _vm->_events->showCursor(); @@ -273,7 +273,7 @@ void MartianScripts::cmdSpecial7() { _vm->_events->_vbCount = 80; while (!_vm->shouldQuit() && _vm->_events->_vbCount > 0) _vm->_events->pollEventsAndWait(); - + _vm->_sound->playSound(2); do { _vm->_events->pollEvents(); diff --git a/engines/access/martian/martian_scripts.h b/engines/access/martian/martian_scripts.h index 9c2141276e..190b3c1816 100644 --- a/engines/access/martian/martian_scripts.h +++ b/engines/access/martian/martian_scripts.h @@ -8,12 +8,12 @@ * modify it under the terms of the GNU General Public License * as published by the Free Software Foundation; either version 2 * of the License, or (at your option) any later version. - + * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. - + * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |