d_dvd_drive_error OK

This commit is contained in:
robojumper
2025-05-13 19:11:43 +02:00
parent 912cc30b60
commit 46117f72a6
26 changed files with 385 additions and 146 deletions
+26
View File
@@ -0,0 +1,26 @@
#ifndef D_DVD_DRIVE_ERROR_H
#define D_DVD_DRIVE_ERROR_H
#include "common.h"
#include "egg/core/eggHeap.h"
class dDvdDriveError_c {
public:
static void create(EGG::Heap *heap);
void draw();
void execute();
void init();
bool isError() const;
static dDvdDriveError_c *GetInstance() {
return sInstance;
}
private:
static dDvdDriveError_c *sInstance;
/* 0x00 */ s32 mDvdDriveStatus;
/* 0x04 */ bool mIsError;
};
#endif