From 56700321564136487cee14c36e0db6c8514e9cfc Mon Sep 17 00:00:00 2001 From: Julie Marchant Date: Tue, 21 May 2019 18:36:45 -0400 Subject: [PATCH 1/2] Added difficulty indicator to the status screen. --- src/defs.h | 1 + src/intermission.cpp | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/src/defs.h b/src/defs.h index f836d9a..335cd3e 100644 --- a/src/defs.h +++ b/src/defs.h @@ -547,6 +547,7 @@ enum { // Status TS_STATUS_HEADER, + TS_STATUS_DIFFICULTY, TS_SHOTS_FIRED, TS_HITS_SCORED, TS_ACCURACY, diff --git a/src/intermission.cpp b/src/intermission.cpp index 8c60875..098bcaa 100644 --- a/src/intermission.cpp +++ b/src/intermission.cpp @@ -232,9 +232,34 @@ These are set only once. static void intermission_setStatusLines() { char string[50]; + char difficulty[50]; int timeTaken = game.timeTaken; int y; + switch (game.difficulty) + { + case DIFFICULTY_EASY: + strcpy(difficulty, "Easy"); + break; + case DIFFICULTY_NORMAL: + strcpy(difficulty, "Normal"); + break; + case DIFFICULTY_HARD: + strcpy(difficulty, "Hard"); + break; + case DIFFICULTY_NIGHTMARE: + strcpy(difficulty, "Nightmare!"); + break; + case DIFFICULTY_ORIGINAL: + strcpy(difficulty, "Classic"); + break; + default: + strcpy(difficulty, "???"); + } + + sprintf(string, "Difficulty : %s", difficulty); + gfx_createTextObject(TS_STATUS_DIFFICULTY, string, 0, 0, FONT_WHITE); + sprintf(string, "Shots Fired : %d", game.shots); gfx_createTextObject(TS_SHOTS_FIRED, string, 0, 0, FONT_WHITE); From 371896eb60f446b447fc9af2b03e0e0a1266e3e6 Mon Sep 17 00:00:00 2001 From: Julie Marchant Date: Tue, 21 May 2019 18:47:32 -0400 Subject: [PATCH 2/2] Updated copyright dates. --- src/Starfighter.cpp | 2 +- src/alien.cpp | 2 +- src/alien.h | 2 +- src/audio.cpp | 2 +- src/audio.h | 2 +- src/bullet.cpp | 2 +- src/bullet.h | 2 +- src/cargo.cpp | 2 +- src/cargo.h | 2 +- src/collectable.cpp | 2 +- src/collectable.h | 2 +- src/colors.cpp | 2 +- src/colors.h | 2 +- src/cutscene.cpp | 2 +- src/cutscene.h | 2 +- src/defs.h | 2 +- src/engine.cpp | 2 +- src/engine.h | 2 +- src/event.cpp | 2 +- src/event.h | 2 +- src/explosion.cpp | 2 +- src/explosion.h | 2 +- src/game.cpp | 2 +- src/game.h | 2 +- src/gfx.cpp | 2 +- src/gfx.h | 2 +- src/info.cpp | 2 +- src/info.h | 2 +- src/intermission.cpp | 2 +- src/intermission.h | 2 +- src/mission.cpp | 2 +- src/mission.h | 2 +- src/player.cpp | 2 +- src/player.h | 2 +- src/radio.cpp | 2 +- src/radio.h | 2 +- src/renderer.cpp | 2 +- src/renderer.h | 2 +- src/save.cpp | 2 +- src/save.h | 2 +- src/screen.cpp | 2 +- src/screen.h | 2 +- src/ship.cpp | 2 +- src/ship.h | 2 +- src/shop.cpp | 2 +- src/shop.h | 2 +- src/structs.h | 2 +- src/title.cpp | 2 +- src/title.h | 2 +- src/weapons.cpp | 2 +- src/weapons.h | 2 +- src/window.cpp | 2 +- src/window.h | 2 +- 53 files changed, 53 insertions(+), 53 deletions(-) diff --git a/src/Starfighter.cpp b/src/Starfighter.cpp index 1d99e2d..fc77dee 100644 --- a/src/Starfighter.cpp +++ b/src/Starfighter.cpp @@ -2,7 +2,7 @@ Project: Starfighter Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012 Guus Sliepen -Copyright (C) 2015-2017 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/alien.cpp b/src/alien.cpp index bf507bc..9eadbe4 100644 --- a/src/alien.cpp +++ b/src/alien.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012 Guus Sliepen -Copyright (C) 2012, 2015-2017 Julie Marchant +Copyright (C) 2012, 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/alien.h b/src/alien.h index 194c727..42cf0ed 100644 --- a/src/alien.h +++ b/src/alien.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/audio.cpp b/src/audio.cpp index 437df41..e982420 100644 --- a/src/audio.cpp +++ b/src/audio.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012 Guus Sliepen -Copyright (C) 2015-2017 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/audio.h b/src/audio.h index 43f2104..ba3eb5b 100644 --- a/src/audio.h +++ b/src/audio.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/bullet.cpp b/src/bullet.cpp index 17aee1f..273a8ba 100644 --- a/src/bullet.cpp +++ b/src/bullet.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012 Guus Sliepen -Copyright (C) 2015-2017 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/bullet.h b/src/bullet.h index 7f26f3b..d3792e7 100644 --- a/src/bullet.h +++ b/src/bullet.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/cargo.cpp b/src/cargo.cpp index b55790e..51135f9 100644 --- a/src/cargo.cpp +++ b/src/cargo.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015-2017 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/cargo.h b/src/cargo.h index 8721632..b516551 100644 --- a/src/cargo.h +++ b/src/cargo.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/collectable.cpp b/src/collectable.cpp index d341541..95656f7 100644 --- a/src/collectable.cpp +++ b/src/collectable.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012 Guus Sliepen -Copyright (C) 2015-2017 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/collectable.h b/src/collectable.h index 2766c14..95127e3 100644 --- a/src/collectable.h +++ b/src/collectable.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/colors.cpp b/src/colors.cpp index 03d4cbf..b5e76c1 100644 --- a/src/colors.cpp +++ b/src/colors.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012, 2013 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/colors.h b/src/colors.h index 77df566..1f5fd77 100644 --- a/src/colors.h +++ b/src/colors.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/cutscene.cpp b/src/cutscene.cpp index 10e2282..d5004eb 100644 --- a/src/cutscene.cpp +++ b/src/cutscene.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012, 2013 Guus Sliepen -Copyright (C) 2012, 2015-2017 Julie Marchant +Copyright (C) 2012, 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/cutscene.h b/src/cutscene.h index 7d6ef7f..5d9af55 100644 --- a/src/cutscene.h +++ b/src/cutscene.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/defs.h b/src/defs.h index 335cd3e..930bb1f 100644 --- a/src/defs.h +++ b/src/defs.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012 Guus Sliepen -Copyright (C) 2012, 2015-2017 Julie Marchant +Copyright (C) 2012, 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/engine.cpp b/src/engine.cpp index bca2cf1..5521e6b 100644 --- a/src/engine.cpp +++ b/src/engine.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012, 2013 Guus Sliepen -Copyright (C) 2015-2017 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/engine.h b/src/engine.h index 143e27b..9c2fd54 100644 --- a/src/engine.h +++ b/src/engine.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/event.cpp b/src/event.cpp index f84cfcf..522b602 100644 --- a/src/event.cpp +++ b/src/event.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012, 2013 Guus Sliepen -Copyright (C) 2012, 2015-2017 Julie Marchant +Copyright (C) 2012, 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/event.h b/src/event.h index 6297a2f..db1e647 100644 --- a/src/event.h +++ b/src/event.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/explosion.cpp b/src/explosion.cpp index 6c84fcf..993e4c8 100644 --- a/src/explosion.cpp +++ b/src/explosion.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015-2017 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/explosion.h b/src/explosion.h index 950057d..6819014 100644 --- a/src/explosion.h +++ b/src/explosion.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/game.cpp b/src/game.cpp index fbf0434..9c75515 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012, 2013 Guus Sliepen -Copyright (C) 2012, 2014-2017 Julie Marchant +Copyright (C) 2012, 2014-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/game.h b/src/game.h index cc42586..dafc586 100644 --- a/src/game.h +++ b/src/game.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/gfx.cpp b/src/gfx.cpp index 9c8ac7d..b658a3f 100644 --- a/src/gfx.cpp +++ b/src/gfx.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012, 2013 Guus Sliepen -Copyright (C) 2015-2017 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/gfx.h b/src/gfx.h index 175fea9..72766b7 100644 --- a/src/gfx.h +++ b/src/gfx.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/info.cpp b/src/info.cpp index 2af0ec0..7f0eb08 100644 --- a/src/info.cpp +++ b/src/info.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012, 2013 Guus Sliepen -Copyright (C) 2015-2017 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/info.h b/src/info.h index 3486eb4..e41cc0d 100644 --- a/src/info.h +++ b/src/info.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/intermission.cpp b/src/intermission.cpp index 098bcaa..7669555 100644 --- a/src/intermission.cpp +++ b/src/intermission.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012, 2013 Guus Sliepen -Copyright (C) 2012, 2015-2017 Julie Marchant +Copyright (C) 2012, 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/intermission.h b/src/intermission.h index ca8625a..3a7a4f0 100644 --- a/src/intermission.h +++ b/src/intermission.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/mission.cpp b/src/mission.cpp index 26bb298..3822948 100644 --- a/src/mission.cpp +++ b/src/mission.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012, 2013 Guus Sliepen -Copyright (C) 2012, 2015-2017 Julie Marchant +Copyright (C) 2012, 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/mission.h b/src/mission.h index 62028af..b3be58a 100644 --- a/src/mission.h +++ b/src/mission.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/player.cpp b/src/player.cpp index 177e8fd..e789a1e 100644 --- a/src/player.cpp +++ b/src/player.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012, 2013 Guus Sliepen -Copyright (C) 2012, 2015-2017 Julie Marchant +Copyright (C) 2012, 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/player.h b/src/player.h index b191d0e..7ea29c1 100644 --- a/src/player.h +++ b/src/player.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/radio.cpp b/src/radio.cpp index 2babbcb..9b10e11 100644 --- a/src/radio.cpp +++ b/src/radio.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012, 2013 Guus Sliepen -Copyright (C) 2015-2017 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/radio.h b/src/radio.h index ac5b6ac..29483a3 100644 --- a/src/radio.h +++ b/src/radio.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/renderer.cpp b/src/renderer.cpp index 8cb576e..ce3023c 100644 --- a/src/renderer.cpp +++ b/src/renderer.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012, 2013 Guus Sliepen -Copyright (C) 2015, 2017 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/renderer.h b/src/renderer.h index f06684e..7f990a2 100644 --- a/src/renderer.h +++ b/src/renderer.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/save.cpp b/src/save.cpp index b1d9d70..99ccdb2 100644 --- a/src/save.cpp +++ b/src/save.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012, 2013 Guus Sliepen -Copyright (C) 2015-2017 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/save.h b/src/save.h index d6f33d6..93e1008 100644 --- a/src/save.h +++ b/src/save.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/screen.cpp b/src/screen.cpp index 256821e..0e38fdb 100644 --- a/src/screen.cpp +++ b/src/screen.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012, 2013 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/screen.h b/src/screen.h index 47aa7ca..33f0842 100644 --- a/src/screen.h +++ b/src/screen.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/ship.cpp b/src/ship.cpp index 970d815..34bc66c 100644 --- a/src/ship.cpp +++ b/src/ship.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012 Guus Sliepen -Copyright (C) 2015-2017 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/ship.h b/src/ship.h index 9aed8ff..d60d7de 100644 --- a/src/ship.h +++ b/src/ship.h @@ -1,5 +1,5 @@ /* -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/shop.cpp b/src/shop.cpp index c4fc440..c6f8b08 100644 --- a/src/shop.cpp +++ b/src/shop.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012, 2013 Guus Sliepen -Copyright (C) 2015-2017 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/shop.h b/src/shop.h index a4ec30d..7c62a05 100644 --- a/src/shop.h +++ b/src/shop.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/structs.h b/src/structs.h index 11bde2b..f19925f 100644 --- a/src/structs.h +++ b/src/structs.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012, 2013 Guus Sliepen -Copyright (C) 2015-2017 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/title.cpp b/src/title.cpp index bde67d2..ecbee06 100644 --- a/src/title.cpp +++ b/src/title.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012, 2013 Guus Sliepen -Copyright (C) 2012, 2015-2017 Julie Marchant +Copyright (C) 2012, 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/title.h b/src/title.h index 78dbeb4..b0bb1d9 100644 --- a/src/title.h +++ b/src/title.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/weapons.cpp b/src/weapons.cpp index 4585cd0..7b2f7e9 100644 --- a/src/weapons.cpp +++ b/src/weapons.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2013 Guus Sliepen -Copyright (C) 2015-2017 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/weapons.h b/src/weapons.h index 187918a..de7e2a9 100644 --- a/src/weapons.h +++ b/src/weapons.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/window.cpp b/src/window.cpp index 4330650..9266214 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011, 2012, 2013 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License diff --git a/src/window.h b/src/window.h index abc3763..5e250bc 100644 --- a/src/window.h +++ b/src/window.h @@ -1,7 +1,7 @@ /* Copyright (C) 2003 Parallel Realities Copyright (C) 2011 Guus Sliepen -Copyright (C) 2015, 2016 Julie Marchant +Copyright (C) 2015-2019 Julie Marchant This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License