diff options
author | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-04-23 10:59:50 +0200 |
---|---|---|
committer | Morph <39850852+Morph1984@users.noreply.github.com> | 2022-04-23 11:55:32 +0200 |
commit | 99ceb03a1cfcf35968cab589ea188a8c406cda52 (patch) | |
tree | 1bb31dbdcc66bad50b3cdbbd7c5325b9b4508ce5 /src/video_core/macro | |
parent | Merge pull request #7976 from BytesGalore/master (diff) | |
download | yuzu-99ceb03a1cfcf35968cab589ea188a8c406cda52.tar yuzu-99ceb03a1cfcf35968cab589ea188a8c406cda52.tar.gz yuzu-99ceb03a1cfcf35968cab589ea188a8c406cda52.tar.bz2 yuzu-99ceb03a1cfcf35968cab589ea188a8c406cda52.tar.lz yuzu-99ceb03a1cfcf35968cab589ea188a8c406cda52.tar.xz yuzu-99ceb03a1cfcf35968cab589ea188a8c406cda52.tar.zst yuzu-99ceb03a1cfcf35968cab589ea188a8c406cda52.zip |
Diffstat (limited to 'src/video_core/macro')
-rw-r--r-- | src/video_core/macro/macro.cpp | 5 | ||||
-rw-r--r-- | src/video_core/macro/macro.h | 5 | ||||
-rw-r--r-- | src/video_core/macro/macro_hle.cpp | 5 | ||||
-rw-r--r-- | src/video_core/macro/macro_hle.h | 5 | ||||
-rw-r--r-- | src/video_core/macro/macro_interpreter.cpp | 5 | ||||
-rw-r--r-- | src/video_core/macro/macro_interpreter.h | 5 | ||||
-rw-r--r-- | src/video_core/macro/macro_jit_x64.cpp | 5 | ||||
-rw-r--r-- | src/video_core/macro/macro_jit_x64.h | 5 |
8 files changed, 16 insertions, 24 deletions
diff --git a/src/video_core/macro/macro.cpp b/src/video_core/macro/macro.cpp index 0aeda4ce8..a033d03be 100644 --- a/src/video_core/macro/macro.cpp +++ b/src/video_core/macro/macro.cpp @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include <cstring> #include <optional> diff --git a/src/video_core/macro/macro.h b/src/video_core/macro/macro.h index 7aaa49286..7e12c16dc 100644 --- a/src/video_core/macro/macro.h +++ b/src/video_core/macro/macro.h @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/video_core/macro/macro_hle.cpp b/src/video_core/macro/macro_hle.cpp index 900ad23c9..58382755b 100644 --- a/src/video_core/macro/macro_hle.cpp +++ b/src/video_core/macro/macro_hle.cpp @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include <array> #include <vector> diff --git a/src/video_core/macro/macro_hle.h b/src/video_core/macro/macro_hle.h index b86ba84a1..625332c9d 100644 --- a/src/video_core/macro/macro_hle.h +++ b/src/video_core/macro/macro_hle.h @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/video_core/macro/macro_interpreter.cpp b/src/video_core/macro/macro_interpreter.cpp index fba755448..87d2e8721 100644 --- a/src/video_core/macro/macro_interpreter.cpp +++ b/src/video_core/macro/macro_interpreter.cpp @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include <array> #include <optional> diff --git a/src/video_core/macro/macro_interpreter.h b/src/video_core/macro/macro_interpreter.h index 8a9648e46..f5eeb0b76 100644 --- a/src/video_core/macro/macro_interpreter.h +++ b/src/video_core/macro/macro_interpreter.h @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once diff --git a/src/video_core/macro/macro_jit_x64.cpp b/src/video_core/macro/macro_jit_x64.cpp index 47b28ad16..dc2b490d4 100644 --- a/src/video_core/macro/macro_jit_x64.cpp +++ b/src/video_core/macro/macro_jit_x64.cpp @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #include <array> #include <bitset> diff --git a/src/video_core/macro/macro_jit_x64.h b/src/video_core/macro/macro_jit_x64.h index 773b037ae..99ee1b9e6 100644 --- a/src/video_core/macro/macro_jit_x64.h +++ b/src/video_core/macro/macro_jit_x64.h @@ -1,6 +1,5 @@ -// Copyright 2020 yuzu Emulator Project -// Licensed under GPLv2 or any later version -// Refer to the license.txt file included. +// SPDX-FileCopyrightText: Copyright 2020 yuzu Emulator Project +// SPDX-License-Identifier: GPL-2.0-or-later #pragma once |