Remove unused utils.h

This commit is contained in:
Maschell 2024-03-16 11:03:55 +01:00
parent 5cb883c1fd
commit 0865962b1f
1 changed files with 0 additions and 12 deletions

View File

@ -1,12 +0,0 @@
#pragma once
#include <coreinit/dynload.h>
inline bool isModuleLoaded(const char *name) {
OSDynLoad_Module module;
auto err = OSDynLoad_IsModuleLoaded(name, &module);
if (err != OS_DYNLOAD_OK || !module) {
return false;
}
return true;
}