mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2026-06-11 04:05:03 -06:00
* Reset controller colours on emulator shutdown * bruh moment * Don't use the destructor for this * clang, formatter of night * forgot to stage this file * ffs * fix tests * fixed tests? * gcn tests fixed? * now? * possible fixed --------- Co-authored-by: georgemoralis <giorgosmrls@gmail.com>
13 lines
253 B
C++
13 lines
253 B
C++
// SPDX-FileCopyrightText: Copyright 2026 shadPS4 Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
#include "emulator.h"
|
|
|
|
namespace Core {
|
|
|
|
Emulator::Emulator() {}
|
|
Emulator::~Emulator() {}
|
|
void Emulator::Shutdown() {}
|
|
|
|
} // namespace Core
|