summaryrefslogtreecommitdiff
path: root/industry_gui.c
diff options
context:
space:
mode:
Diffstat (limited to 'industry_gui.c')
-rw-r--r--industry_gui.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/industry_gui.c b/industry_gui.c
index 3e05c79d0..db34d8b44 100644
--- a/industry_gui.c
+++ b/industry_gui.c
@@ -392,8 +392,8 @@ static int CDECL GeneralIndustrySorter(const void *a, const void *b)
{
char buf1[96];
byte val;
- Industry *i = DEREF_INDUSTRY(*(byte*)a);
- Industry *j = DEREF_INDUSTRY(*(byte*)b);
+ Industry *i = DEREF_INDUSTRY(*(const byte*)a);
+ Industry *j = DEREF_INDUSTRY(*(const byte*)b);
int r = 0;
switch (_industry_sort_order >> 1) {
@@ -437,7 +437,7 @@ static int CDECL GeneralIndustrySorter(const void *a, const void *b)
SET_DPARAM32(0, i->town->townnameparts);
GetString(buf1, i->town->townnametype);
- if ( (val=*(byte*)b) != _last_industry_idx) {
+ if ( (val=*(const byte*)b) != _last_industry_idx) {
_last_industry_idx = val;
SET_DPARAM32(0, j->town->townnameparts);
GetString(_bufcache, j->town->townnametype);