mirror of
https://gitlab.com/Nanolx/homebrewfilter.git
synced 2024-11-01 23:25:09 +01:00
12 lines
174 B
C++
12 lines
174 B
C++
#include "main.h"
|
|
#include "gecko.h"
|
|
#include "Network/wifi_gecko.h"
|
|
|
|
void xprintf(const char *str, ...)
|
|
{
|
|
if(Options.wifigecko)
|
|
wifi_printf(str);
|
|
else
|
|
gprintf(str);
|
|
}
|