refactore: rename loadPOSIX to loadIO

This commit is contained in:
Wellinator
2023-11-11 13:34:50 -03:00
parent 67f70f80d8
commit e229b34ad3
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ class IrxLoader {
void loadSio2man(const bool& verbose); void loadSio2man(const bool& verbose);
void loadPadman(const bool& verbose); void loadPadman(const bool& verbose);
void loadLibsd(const bool& verbose); void loadLibsd(const bool& verbose);
void loadPOSIX(const bool& verbose); void loadIO(const bool& verbose);
void loadUsbModules(const bool& verbose); void loadUsbModules(const bool& verbose);
void loadAudsrv(const bool& verbose); void loadAudsrv(const bool& verbose);
+2 -2
View File
@@ -60,7 +60,7 @@ void IrxLoader::loadAll(const bool& withUsb, const bool& isLoggingToFile) {
return; return;
} }
loadPOSIX(!isLoggingToFile); loadIO(!isLoggingToFile);
loadSio2man(!isLoggingToFile); loadSio2man(!isLoggingToFile);
loadPadman(!isLoggingToFile); loadPadman(!isLoggingToFile);
loadLibsd(!isLoggingToFile); loadLibsd(!isLoggingToFile);
@@ -107,7 +107,7 @@ void IrxLoader::loadLibsd(const bool& verbose) {
if (verbose) TYRA_LOG("IRX: Libsd loaded!"); if (verbose) TYRA_LOG("IRX: Libsd loaded!");
} }
void IrxLoader::loadPOSIX(const bool& verbose) { void IrxLoader::loadIO(const bool& verbose) {
int ret; int ret;
if (verbose) TYRA_LOG("IRX: Loading iomanX..."); if (verbose) TYRA_LOG("IRX: Loading iomanX...");