Skip to content

Commit

Permalink
ULTIMA8: Remove dependency on Shared::Debugger
Browse files Browse the repository at this point in the history
  • Loading branch information
ccawley2011 authored and OMGPizzaGuy committed Jan 5, 2023
1 parent ff8b151 commit 8d8f839
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion engines/ultima/ultima8/misc/debugger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ namespace Ultima8 {

Debugger *g_debugger;

Debugger::Debugger() : Shared::Debugger() {
Debugger::Debugger() : GUI::Debugger() {
g_debugger = this;

// WARNING: Not only can the methods below be executed directly in the debugger,
Expand Down
4 changes: 2 additions & 2 deletions engines/ultima/ultima8/misc/debugger.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,18 +23,18 @@
#define ULTIMA_ULTIMA8_ENGINE_DEBUGGER_H

#include "ultima/ultima8/misc/common_types.h"
#include "ultima/shared/engine/debugger.h"
#include "ultima/shared/std/containers.h"
#include "common/debug.h"
#include "common/stream.h"
#include "gui/debugger.h"

namespace Ultima {
namespace Ultima8 {

/**
* Debugger base class
*/
class Debugger : public Shared::Debugger {
class Debugger : public GUI::Debugger {
private:
const char *strBool(bool flag) {
return flag ? "true" : "false";
Expand Down

0 comments on commit 8d8f839

Please sign in to comment.