aboutsummaryrefslogtreecommitdiff
path: root/sword2/console.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'sword2/console.cpp')
-rw-r--r--sword2/console.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/sword2/console.cpp b/sword2/console.cpp
index 722b3d1e5d..e50741fdb9 100644
--- a/sword2/console.cpp
+++ b/sword2/console.cpp
@@ -144,7 +144,7 @@ void Debugger::postEnter() {
g_sound->unpauseMusic();
// Restore old mouse cursor
- g_display->drawMouse();
+ g_graphics->drawMouse();
}
@@ -209,7 +209,7 @@ bool Debugger::Cmd_Start(int argc, const char **argv) {
}
g_logic->conStart(atoi(argv[1]));
- g_display->setPalette(187, 1, pal, RDPAL_INSTANT);
+ g_graphics->setPalette(187, 1, pal, RDPAL_INSTANT);
return true;
}
@@ -451,14 +451,14 @@ bool Debugger::Cmd_RestoreGame(int argc, const char **argv) {
// FIXME: Replace these with a command to modify the graphics detail setting
bool Debugger::Cmd_BltFxOn(int argc, const char **argv) {
- // g_display->setBltFx();
+ // g_graphics->setBltFx();
// DebugPrintf("Blit fx enabled\n");
DebugPrintf("FIXME: The setBltFx() function no longer exists\n");
return true;
}
bool Debugger::Cmd_BltFxOff(int argc, const char **argv) {
- // g_display->clearBltFx();
+ // g_graphics->clearBltFx();
// DebugPrintf("Blit fx disabled\n");
DebugPrintf("FIXME: The clearBltFx() function no longer exists\n");
return true;