mirror of
https://github.com/wheremyfoodat/Panda3DS.git
synced 2025-04-06 22:25:41 +12:00
Revert "Merge branch 'master' of https://github.com/SimoneN64/Panda3DS"
This reverts commit51fb4865ee
, reversing changes made tode2751fb5c
.
This commit is contained in:
parent
51fb4865ee
commit
3063efaea1
3 changed files with 1 additions and 4 deletions
|
@ -47,7 +47,7 @@ class Emulator {
|
|||
static constexpr u32 width = 400;
|
||||
static constexpr u32 height = 240 * 2; // * 2 because 2 screens
|
||||
ROMType romType = ROMType::None;
|
||||
bool running = true, romLoaded = false;
|
||||
bool running = true;
|
||||
|
||||
#ifdef PANDA3DS_ENABLE_HTTP_SERVER
|
||||
HttpServer httpServer;
|
||||
|
@ -64,7 +64,6 @@ class Emulator {
|
|||
Emulator();
|
||||
~Emulator();
|
||||
|
||||
void stop();
|
||||
void step();
|
||||
void render();
|
||||
void reset();
|
||||
|
|
|
@ -22,7 +22,6 @@ enum class GPUInterrupt : u8 {
|
|||
class Kernel;
|
||||
|
||||
class GPUService {
|
||||
bool registerInterruptRelayQueueBeenHere = false;
|
||||
Handle handle = KernelHandles::GPU;
|
||||
Memory& mem;
|
||||
GPU& gpu;
|
||||
|
|
|
@ -35,7 +35,6 @@ void GPUService::reset() {
|
|||
interruptEvent = std::nullopt;
|
||||
gspThreadCount = 0;
|
||||
sharedMem = nullptr;
|
||||
registerInterruptRelayQueueBeenHere = false;
|
||||
}
|
||||
|
||||
void GPUService::handleSyncRequest(u32 messagePointer) {
|
||||
|
|
Loading…
Add table
Reference in a new issue