nevat / abbayedesmorts-gpl

l'Abbaye des Morts - ported to Linux, Pandora, GCW0, Wii and PSP
GNU General Public License v3.0
73 stars 16 forks source link

Declare renderer as extern; fix #13 #14

Closed jmdejong closed 4 years ago

jmdejong commented 4 years ago

With gcc 10 the linking fails because renderer is defined multiple times. Adding the extern keyword makes sure that the header only declares the variable without defining it. A definition for the variable is added in main.c

Fixes #13.

carstene1ns commented 4 years ago

Thank you for your contribution!