Update Ox

This commit is contained in:
Gary Talent 2017-05-12 00:29:58 -05:00
parent 89a6196b04
commit 059be4e32a
4 changed files with 3 additions and 5 deletions

View File

@ -13,7 +13,7 @@
namespace nostalgia {
namespace studio {
using namespace ox::fs;
using namespace ox;
QString Project::ROM_FILE = "/ROM.oxfs";

View File

@ -23,7 +23,7 @@ class Project: public QObject {
QString m_path = "";
QSharedPointer<QByteArray> m_romBuff;
QSharedPointer<ox::fs::FileSystem> m_fs;
QSharedPointer<ox::FileSystem> m_fs;
public:
Project(QString path);

View File

@ -14,7 +14,7 @@
#include "mainwindow.hpp"
using namespace nostalgia::studio;
using namespace ox::clargs;
using namespace ox;
int run(int argc, char **args) {
ClArgs clargs(argc, (const char**) args);

View File

@ -17,8 +17,6 @@
using namespace std;
using namespace ox;
using namespace ox::clargs;
using namespace ox::fs;
using namespace nostalgia::core;
using namespace nostalgia::common;