aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--base/gameDetector.cpp2
-rw-r--r--common/scaler.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/base/gameDetector.cpp b/base/gameDetector.cpp
index d1cc9ddc6f..79e8ca9eee 100644
--- a/base/gameDetector.cpp
+++ b/base/gameDetector.cpp
@@ -123,7 +123,7 @@ static const struct GraphicsMode gfx_modes[] = {
{"dotmatrix", "DotMatrix", GFX_DOTMATRIX},
#else
{"flipping", "Page Flipping", GFX_FLIPPING},
- {"dbuffer", "Double Buffer", GFX_DOUBLEBUFFER},
+ {"buffered", "Buffered", GFX_BUFFERED},
{"wide", "Wide (HiRes+ only)", GFX_WIDE},
#endif
{0, 0, 0}
diff --git a/common/scaler.h b/common/scaler.h
index 87f7b1b434..d824f7e9b8 100644
--- a/common/scaler.h
+++ b/common/scaler.h
@@ -70,7 +70,7 @@ enum {
GFX_DOTMATRIX = 11,
GFX_FLIPPING = 100, // Palmos
- GFX_DOUBLEBUFFER = 101, // Palmos
+ GFX_BUFFERED = 101, // Palmos
GFX_WIDE = 102 // palmos
};