Properly include stenzek's DuckStation copyright notices in the retro files

This commit is contained in:
Henrik Rydgård 2023-06-18 14:24:47 +02:00
parent 93de74144e
commit 6326880070
3 changed files with 13 additions and 4 deletions

View file

@ -972,6 +972,7 @@ void CreditsScreen::render() {
"adenovan",
"iota97",
"Lubos",
"stenzek", // For retroachievements integration
"",
cr->T("specialthanks", "Special thanks to:"),
specialthanksMaxim.c_str(),

View file

@ -1,3 +1,9 @@
// SPDX-FileCopyrightText: 2019-2022 Connor McLaughlin <stenzek@gmail.com>
// SPDX-License-Identifier: (GPL-2.0 OR GPL-3.0 OR CC-BY-NC-ND-4.0)
// Derived from Duckstation's RetroAchievements implementation by stenzek as can be seen
// above, relicensed to GPL 2.0.
#include <algorithm>
#include <atomic>
#include <cstdarg>

View file

@ -1,9 +1,11 @@
// PLEASE NOTE
//
// This is basically a copy/paste of Duckstation's RetroAchievements integration.
// SPDX-FileCopyrightText: 2019-2022 Connor McLaughlin <stenzek@gmail.com>
// SPDX-License-Identifier: (GPL-2.0 OR GPL-3.0 OR CC-BY-NC-ND-4.0)
// Derived from Duckstation's RetroAchievements implementation by stenzek as can be seen
// above, relicensed to GPL 2.0.
// Modifications and deletions have been made where needed.
// Refactoring it into a more PPSSPP-like style may or may not be a good idea -
// it'll make it harder to copy new features from Duckstation :)
// it'll make it harder to copy new achievement features from Duckstation.
#pragma once