Update ipak file logic.

This commit is contained in:
= 2025-04-04 20:41:23 -04:00
parent 1b6aeefb49
commit 0ae2ec4a27
4 changed files with 7 additions and 3 deletions

View File

@ -1,6 +1,6 @@
QT += core widgets
TEMPLATE = lib
CONFIG += staticlib c++17 debug
CONFIG += staticlib c++17
SOURCES += \
logmanager.cpp \

View File

@ -7,7 +7,9 @@ enum FF_PLATFORM {
FF_PLATFORM_NONE = 0x00, // No platform
FF_PLATFORM_XBOX = 0x01, // Xbox 360
FF_PLATFORM_PS3 = 0x02, // Playstation 3
FF_PLATFORM_PC = 0x03 // PC
FF_PLATFORM_PC = 0x03, // PC
FF_PLATFORM_WII = 0x04, // WII
FF_PLATFORM_WIIU = 0x05 // WII U
};
enum FF_GAME {

View File

@ -1,6 +1,8 @@
#include "logmanager.h"
#include "qdebug.h"
void LogManager::addEntry(const QString &entry) {
qDebug() << entry;
emit entryAdded(entry);
}

View File

@ -1,6 +1,6 @@
QT += core
TEMPLATE = lib
CONFIG += staticlib c++17 debug
CONFIG += staticlib c++17
SOURCES += \
ipakfile.cpp