mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-10 11:51:52 +00:00
PRIVATE: removed console
This commit is contained in:
parent
5c89526daa
commit
79e3987459
@ -187,10 +187,6 @@ Common::Error PrivateEngine::run() {
|
||||
_image->loadStream(frameFile);
|
||||
_frame = _image->getSurface()->convertTo(_pixelFormat, _image->getPalette());
|
||||
|
||||
// Debugger console
|
||||
Console *console = new Console(this);
|
||||
setDebugger(console);
|
||||
|
||||
// Main event loop
|
||||
Common::Event event;
|
||||
Common::Point mousePos;
|
||||
|
@ -27,7 +27,6 @@
|
||||
#include "common/serializer.h"
|
||||
#include "engines/advancedDetector.h"
|
||||
#include "engines/engine.h"
|
||||
#include "gui/debugger.h"
|
||||
|
||||
#include "common/installshieldv3_archive.h"
|
||||
|
||||
@ -50,8 +49,6 @@ struct ADGameDescription;
|
||||
|
||||
namespace Private {
|
||||
|
||||
class Console;
|
||||
|
||||
// debug channels
|
||||
enum {
|
||||
kPrivateDebugFunction = 1 << 0,
|
||||
@ -291,14 +288,6 @@ public:
|
||||
|
||||
extern PrivateEngine *g_private;
|
||||
|
||||
class Console : public GUI::Debugger {
|
||||
public:
|
||||
Console(PrivateEngine *vm) {
|
||||
}
|
||||
virtual ~Console(void) {
|
||||
}
|
||||
};
|
||||
|
||||
} // End of namespace Private
|
||||
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user