* Display the temperature status. Moved statusGet code from drawNetwork() into drawStatus(). Added types in common.h to fix building with latest libnx nacp.h, with the pc-build.
8 lines
186 B
C
8 lines
186 B
C
#pragma once
|
|
#include "common.h"
|
|
|
|
bool statusInit(void);
|
|
void statusExit(void);
|
|
bool statusGet(bool *netstatusFlag, AssetId *netstatusAssetId, bool *temperatureFlag, s32 *temperature);
|
|
|