aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/Makefile4
-rw-r--r--src/collision.c2
-rw-r--r--src/extern.h2
-rw-r--r--src/game.c2
-rw-r--r--src/game.h2
-rw-r--r--src/gpio.c2
-rw-r--r--src/gpio.h2
-rw-r--r--src/input.c2
-rw-r--r--src/input.h2
-rw-r--r--src/renderer.c2
-rw-r--r--src/renderer.h2
-rw-r--r--src/screen.h2
-rw-r--r--src/snake-sdl.c4
-rw-r--r--src/version.h2
14 files changed, 17 insertions, 15 deletions
diff --git a/src/Makefile b/src/Makefile
index f867d21..c176657 100644
--- a/src/Makefile
+++ b/src/Makefile
@@ -1,6 +1,8 @@
-# Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
+#
+# Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
#
# SPDX-License-Identifier: Apache-2.0
+#
src = snake-sdl.c collision.c game.c input.c renderer.c
inc = extern.h game.h input.h renderer.h screen.h version.h
diff --git a/src/collision.c b/src/collision.c
index 5810c84..66f710a 100644
--- a/src/collision.c
+++ b/src/collision.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
+ * Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
*
* SPDX-License-Identifier: Apache-2.0
*/
diff --git a/src/extern.h b/src/extern.h
index 482b9ed..4bdb1b9 100644
--- a/src/extern.h
+++ b/src/extern.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
+ * Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
*
* SPDX-License-Identifier: Apache-2.0
*/
diff --git a/src/game.c b/src/game.c
index 1a836d0..e6a5c33 100644
--- a/src/game.c
+++ b/src/game.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
+ * Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
*
* SPDX-License-Identifier: Apache-2.0
*/
diff --git a/src/game.h b/src/game.h
index a510c6c..b8439dc 100644
--- a/src/game.h
+++ b/src/game.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
+ * Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
*
* SPDX-License-Identifier: Apache-2.0
*/
diff --git a/src/gpio.c b/src/gpio.c
index 9d4cde1..2860f37 100644
--- a/src/gpio.c
+++ b/src/gpio.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
+ * Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
*
* SPDX-License-Identifier: Apache-2.0
*/
diff --git a/src/gpio.h b/src/gpio.h
index 0b6b75d..cf02859 100644
--- a/src/gpio.h
+++ b/src/gpio.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
+ * Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
*
* SPDX-License-Identifier: Apache-2.0
*/
diff --git a/src/input.c b/src/input.c
index 46ba24a..8bb4048 100644
--- a/src/input.c
+++ b/src/input.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
+ * Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
*
* SPDX-License-Identifier: Apache-2.0
*/
diff --git a/src/input.h b/src/input.h
index 0446474..c72532d 100644
--- a/src/input.h
+++ b/src/input.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
+ * Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
*
* SPDX-License-Identifier: Apache-2.0
*/
diff --git a/src/renderer.c b/src/renderer.c
index c742e18..16948cb 100644
--- a/src/renderer.c
+++ b/src/renderer.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
+ * Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
*
* SPDX-License-Identifier: Apache-2.0
*/
diff --git a/src/renderer.h b/src/renderer.h
index b6de4d8..7e75cff 100644
--- a/src/renderer.h
+++ b/src/renderer.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
+ * Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
*
* SPDX-License-Identifier: Apache-2.0
*/
diff --git a/src/screen.h b/src/screen.h
index 158cdaa..6783630 100644
--- a/src/screen.h
+++ b/src/screen.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
+ * Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
*
* SPDX-License-Identifier: Apache-2.0
*/
diff --git a/src/snake-sdl.c b/src/snake-sdl.c
index 48b8fc8..8ec1aa7 100644
--- a/src/snake-sdl.c
+++ b/src/snake-sdl.c
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
+ * Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
*
* SPDX-License-Identifier: Apache-2.0
*/
@@ -941,7 +941,7 @@ int
main(void)
{
printf("Snake " VERSION "." RELEASE "." PATCH EXTRA "\n"
- "Copyright (c) 2019-2020, yzrh <yzrh@noema.org>\n");
+ "Copyright (c) 2019-2021, yzrh <yzrh@noema.org>\n");
if (SDL_Init(SDL_INIT_VIDEO |
SDL_INIT_AUDIO |
diff --git a/src/version.h b/src/version.h
index 874129a..78edaf2 100644
--- a/src/version.h
+++ b/src/version.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2019-2020, yzrh <yzrh@noema.org>
+ * Copyright (c) 2019-2021, yzrh <yzrh@noema.org>
*
* SPDX-License-Identifier: Apache-2.0
*/