aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/gfx
diff options
context:
space:
mode:
authorFilippos Karapetis2009-10-05 10:27:00 +0000
committerFilippos Karapetis2009-10-05 10:27:00 +0000
commit55e7c29d95b6d77c4e59f1deeae5760f4cf0b29e (patch)
tree255f9730c3ae0800648d20fab7d1cb6b08f393ee /engines/sci/gfx
parent4478ab647277d7eaa6eb52042f1be82e8f1cc5f1 (diff)
downloadscummvm-rg350-55e7c29d95b6d77c4e59f1deeae5760f4cf0b29e.tar.gz
scummvm-rg350-55e7c29d95b6d77c4e59f1deeae5760f4cf0b29e.tar.bz2
scummvm-rg350-55e7c29d95b6d77c4e59f1deeae5760f4cf0b29e.zip
Removed dead code
svn-id: r44657
Diffstat (limited to 'engines/sci/gfx')
-rw-r--r--engines/sci/gfx/operations.cpp21
-rw-r--r--engines/sci/gfx/operations.h10
2 files changed, 1 insertions, 30 deletions
diff --git a/engines/sci/gfx/operations.cpp b/engines/sci/gfx/operations.cpp
index 6c0d333849..adbe812a6b 100644
--- a/engines/sci/gfx/operations.cpp
+++ b/engines/sci/gfx/operations.cpp
@@ -1468,23 +1468,6 @@ void gfxop_check_cel(GfxState *state, int nr, int *loop, int *cel) {
error("[GFX] Attempt to verify loop/cel values for invalid view %d", nr);
}
-void gfxop_overflow_cel(GfxState *state, int nr, int *loop, int *cel) {
- int loop_v = *loop;
- int cel_v = *cel;
-
- gfxr_view_t *testView = state->gfxResMan->getView(nr, &loop_v, &cel_v, 0);
-
- if (!testView)
- error("[GFX] Attempt to verify loop/cel values for invalid view %d", nr);
-
- if (loop_v != *loop)
- *loop = 0;
-
- if (loop_v != *loop
- || cel_v != *cel)
- *cel = 0;
-}
-
void gfxop_get_cel_parameters(GfxState *state, int nr, int loop, int cel, int *width, int *height, Common::Point *offset) {
gfxr_view_t *view = NULL;
gfx_pixmap_t *pxm = NULL;
@@ -1625,9 +1608,7 @@ void gfxop_add_to_pic(GfxState *state, int nr, int flags, int default_palette) {
// FIXME: only the resstate member of state is used -- inline the reference by:
// replacing GfxState* state parameter with gfx_resstate_t* gfxResourceState and adjust callers accordingly
int gfxop_get_font_height(GfxState *state, int font_nr) {
- gfx_bitmap_font_t *font;
-
- font = state->gfxResMan->getFont(font_nr);
+ gfx_bitmap_font_t *font = state->gfxResMan->getFont(font_nr);
if (!font)
error("gfxop_get_font_height(): Font number %d not found", font_nr);
diff --git a/engines/sci/gfx/operations.h b/engines/sci/gfx/operations.h
index 47713d6db1..d73ef50aab 100644
--- a/engines/sci/gfx/operations.h
+++ b/engines/sci/gfx/operations.h
@@ -455,16 +455,6 @@ int gfxop_lookup_view_get_cels(GfxState *state, int nr, int loop);
void gfxop_check_cel(GfxState *state, int nr, int *loop, int *cel);
/**
- * Resets loop/cel values to zero if they have become invalid.
- *
- * @param[in] state The state to use
- * @param[in] nr Number of the view to use
- * @param[in] loop Pointer to the variable storing the loop number to verify
- * @param[in] cel Pointer to the variable storing the cel number to check
- */
-void gfxop_overflow_cel(GfxState *state, int nr, int *loop, int *cel);
-
-/**
* Retrieves the width and height of a cel.
*
* @param[in] state The state to use