From 50618d4607ccf8a4884eabfa20ebb3bc729dd7f0 Mon Sep 17 00:00:00 2001 From: niklascfw Date: Wed, 11 Feb 2026 16:20:56 +0100 Subject: [PATCH] Changed logging and credits --- source/fs.c | 5 +++-- source/fs.h | 3 ++- source/libs/fatfs/diskio.c | 6 +++--- source/main.c | 2 +- 4 files changed, 9 insertions(+), 7 deletions(-) diff --git a/source/fs.c b/source/fs.c index 80e9ba3..8ffba4a 100644 --- a/source/fs.c +++ b/source/fs.c @@ -1,5 +1,6 @@ /* - * HATS Installer - Filesystem operations with file logging + * OmniNX Installer - Filesystem operations with file logging + * Based on HATS Installer */ #include "fs.h" @@ -23,7 +24,7 @@ void log_init(const char *path) { int res = f_open(&log_file, path, FA_WRITE | FA_CREATE_ALWAYS); if (res == FR_OK) { log_enabled = true; - log_write("=== HATS Installer Log ===\n\n"); + log_write("=== OmniNX Installer Log ===\n\n"); } } diff --git a/source/fs.h b/source/fs.h index 58f56c4..dd7ec0a 100644 --- a/source/fs.h +++ b/source/fs.h @@ -1,5 +1,6 @@ /* - * HATS Installer - Filesystem operations + * OmniNX Installer - Filesystem operations + * Based on HATS Installer */ #pragma once diff --git a/source/libs/fatfs/diskio.c b/source/libs/fatfs/diskio.c index 771da38..408c8d7 100644 --- a/source/libs/fatfs/diskio.c +++ b/source/libs/fatfs/diskio.c @@ -1,9 +1,9 @@ /* - * HATS Installer - Simplified disk I/O (SD card only) - * Based on TegraExplorer diskio.c by shchmue + * OmniNX Installer - Simplified disk I/O (SD card only) + * Based on HATS Installer, TegraExplorer diskio.c by shchmue * * This simplified version removes BIS/eMMC support since the - * HATS installer only needs SD card access. + * OmniNX installer only needs SD card access. */ /*-----------------------------------------------------------------------*/ diff --git a/source/main.c b/source/main.c index 52dc27f..1068a1d 100644 --- a/source/main.c +++ b/source/main.c @@ -2,8 +2,8 @@ * OmniNX Installer Payload * Minimal payload to install OmniNX CFW Pack files outside of Horizon OS * + * Based on HATS Installer by sthetix * Based on TegraExplorer/hekate by CTCaer, naehrwert, shchmue - * Based on HATS-Installer-Payload by sthetix */ #ifndef VERSION