removed a useless addition that caused pointless complications

This commit is contained in:
2026-06-06 03:51:10 +02:00
parent c58e57b7c7
commit de13eeb85a
2 changed files with 0 additions and 11 deletions

View File

@@ -258,35 +258,29 @@ typedef struct ncl_ComponentStat {
// specific properties
union {
struct {
const nn_EEPROM *conf;
size_t codeUsed;
size_t dataUsed;
} eeprom;
struct {
const nn_Filesystem *conf;
size_t spaceUsed;
size_t realDiskUsage;
size_t filesOpen;
const char *path;
} fs;
struct {
const nn_Drive *conf;
size_t lastSector;
} drive;
struct {
const nn_NandFlash *conf;
size_t currentWriteCount;
double wearlevel;
} flash;
struct {
const nn_GPU *conf;
size_t vramFree;
size_t bufferCount;
// can be NULL if there is none
const char *boundScreen;
} gpu;
struct {
const nn_ScreenConfig *conf;
ncl_ScreenState *state;
ncl_ScreenFlags flags;
int viewportWidth;