|
|
|
@ -1,6 +1,6 @@
|
|
|
|
|
#include "engine.hpp"
|
|
|
|
|
|
|
|
|
|
#include "components/esm/loadcell.hpp"
|
|
|
|
|
#include <stdexcept>
|
|
|
|
|
|
|
|
|
|
#include <OgreRoot.h>
|
|
|
|
|
#include <OgreRenderWindow.h>
|
|
|
|
@ -18,6 +18,8 @@
|
|
|
|
|
#include <components/nifbullet/bulletnifloader.hpp>
|
|
|
|
|
#include <components/nifogre/ogrenifloader.hpp>
|
|
|
|
|
|
|
|
|
|
#include <components/esm/loadcell.hpp>
|
|
|
|
|
|
|
|
|
|
#include "mwinput/inputmanagerimp.hpp"
|
|
|
|
|
|
|
|
|
|
#include "mwgui/windowmanagerimp.hpp"
|
|
|
|
@ -211,7 +213,9 @@ void OMW::Engine::loadBSA()
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
std::cout << "Archive " << *archive << " not found" << std::endl;
|
|
|
|
|
std::stringstream message;
|
|
|
|
|
message << "Archive '" << *archive << "' not found";
|
|
|
|
|
throw std::runtime_error(message.str());
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|