diff options
Diffstat (limited to 'src/bootstrap_gui.cpp')
-rw-r--r-- | src/bootstrap_gui.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bootstrap_gui.cpp b/src/bootstrap_gui.cpp index 31b99730f..c2b76f0b1 100644 --- a/src/bootstrap_gui.cpp +++ b/src/bootstrap_gui.cpp @@ -215,7 +215,7 @@ bool HandleBootstrap() if (BaseGraphics::GetUsedSet() != NULL) return true; /* No user interface, bail out with an error. */ - if (BlitterFactoryBase::GetCurrentBlitter()->GetScreenDepth() == 0) goto failure; + if (BlitterFactory::GetCurrentBlitter()->GetScreenDepth() == 0) goto failure; /* If there is no network or no freetype, then there is nothing we can do. Go straight to failure. */ #if defined(ENABLE_NETWORK) && defined(WITH_FREETYPE) && (defined(WITH_FONTCONFIG) || defined(WIN32) || defined(__APPLE__)) |