aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/engine/int_hashmap.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sci/engine/int_hashmap.h')
-rw-r--r--engines/sci/engine/int_hashmap.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/engine/int_hashmap.h b/engines/sci/engine/int_hashmap.h
index c677079211..e191f76c0f 100644
--- a/engines/sci/engine/int_hashmap.h
+++ b/engines/sci/engine/int_hashmap.h
@@ -50,7 +50,7 @@ struct int_hash_map_t {
node_t *next;
};
- int base_value; // Starts at zero, counts upwards
+ int base_value; // Starts at zero, counts upwards
node_t *nodes[DCS_INT_HASH_MAX + 1];
node_t *holes; /* List of freed entries to minimize
** memory operations and modifications
@@ -61,7 +61,7 @@ struct int_hash_map_t {
public:
int_hash_map_t();
~int_hash_map_t();
-
+
/**
* Checks whether a value is in the map, adds it if neccessary.
* @param value The value to check for/add