diff options
author | Filippos Karapetis | 2009-05-30 16:36:37 +0000 |
---|---|---|
committer | Filippos Karapetis | 2009-05-30 16:36:37 +0000 |
commit | ecfb2e5b5dd61b434951f0e6d95536d4b981569e (patch) | |
tree | 7bd4cab539944a4035cd166cdfa0cfb55083b1f3 /engines/sci/gfx | |
parent | 86d78bbc8b4f752bf115ec394a5bc20c052de102 (diff) | |
download | scummvm-rg350-ecfb2e5b5dd61b434951f0e6d95536d4b981569e.tar.gz scummvm-rg350-ecfb2e5b5dd61b434951f0e6d95536d4b981569e.tar.bz2 scummvm-rg350-ecfb2e5b5dd61b434951f0e6d95536d4b981569e.zip |
- Moved the print_port, segment_info and segment_kill console commands to console.cpp
- Removed the unused gfx driver debug flags
svn-id: r41036
Diffstat (limited to 'engines/sci/gfx')
-rw-r--r-- | engines/sci/gfx/gfx_driver.cpp | 1 | ||||
-rw-r--r-- | engines/sci/gfx/gfx_driver.h | 8 |
2 files changed, 0 insertions, 9 deletions
diff --git a/engines/sci/gfx/gfx_driver.cpp b/engines/sci/gfx/gfx_driver.cpp index 8ee2b3977e..2418f45824 100644 --- a/engines/sci/gfx/gfx_driver.cpp +++ b/engines/sci/gfx/gfx_driver.cpp @@ -307,7 +307,6 @@ static int scummvm_set_pointer(gfx_driver_t *drv, gfx_pixmap_t *pointer, Common: gfx_driver_t gfx_driver_scummvm = { NULL, 0, 0, - 0, // flags here 0, NULL, scummvm_init, diff --git a/engines/sci/gfx/gfx_driver.h b/engines/sci/gfx/gfx_driver.h index 634fe072e0..254f619b34 100644 --- a/engines/sci/gfx/gfx_driver.h +++ b/engines/sci/gfx/gfx_driver.h @@ -42,11 +42,6 @@ enum gfx_buffer_t { #define GFX_CAPABILITY_SHADING (1<<0) #define GFX_CAPABILITY_STIPPLED_LINES (1<<6) -#define GFX_DEBUG_POINTER (1<<0) -#define GFX_DEBUG_UPDATES (1<<1) -#define GFX_DEBUG_PIXMAPS (1<<2) -#define GFX_DEBUG_BASIC (1<<3) /* Basic geometric ops (lines, boxes, etc) */ - /* Principial graphics driver architecture ** --------------------------------------- ** @@ -92,9 +87,6 @@ struct gfx_driver_t { /* Graphics driver */ ** horizontally and vertically (xl = 0 or yl = 0). */ - unsigned int debug_flags; /* Driver debug flags */ - - /*** Initialization ***/ int (*set_parameter)(gfx_driver_t *drv, char *attribute, char *value); |