mirror of
https://github.com/wiiu-env/wut.git
synced 2025-01-07 11:28:13 +01:00
Fix circular dependency between systeminfo.h and time.h
This commit is contained in:
parent
9cc6aead84
commit
55edba512f
@ -1,6 +1,5 @@
|
||||
#pragma once
|
||||
#include <wut.h>
|
||||
#include "time.h"
|
||||
|
||||
/**
|
||||
* \defgroup coreinit_systeminfo System Info
|
||||
@ -18,7 +17,7 @@ struct OSSystemInfo
|
||||
{
|
||||
uint32_t busClockSpeed;
|
||||
uint32_t coreClockSpeed;
|
||||
OSTime baseTime;
|
||||
int64_t baseTime;
|
||||
UNKNOWN(0x10);
|
||||
};
|
||||
CHECK_OFFSET(OSSystemInfo, 0x0, busClockSpeed);
|
||||
|
@ -1,6 +1,5 @@
|
||||
#pragma once
|
||||
#include <wut.h>
|
||||
#include "systeminfo.h"
|
||||
#include "context.h"
|
||||
#include "time.h"
|
||||
#include "threadqueue.h"
|
||||
|
@ -1,5 +1,6 @@
|
||||
#pragma once
|
||||
#include <wut.h>
|
||||
#include "systeminfo.h"
|
||||
|
||||
/**
|
||||
* \defgroup coreinit_time Time
|
||||
|
Loading…
Reference in New Issue
Block a user