aboutsummaryrefslogtreecommitdiff
path: root/engines/sludge/sludger.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sludge/sludger.cpp')
-rw-r--r--engines/sludge/sludger.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/sludge/sludger.cpp b/engines/sludge/sludger.cpp
index a4ae34d627..5c5e6c66f2 100644
--- a/engines/sludge/sludger.cpp
+++ b/engines/sludge/sludger.cpp
@@ -65,11 +65,11 @@ extern bool reallyWantToQuit;
extern Graphics::Surface renderSurface;
int numBIFNames = 0;
-char * *allBIFNames = NULL;
+char **allBIFNames = NULL;
int numUserFunc = 0;
-char * *allUserFunc = NULL;
+char **allUserFunc = NULL;
int numResourceNames = 0;
-char * *allResourceNames = NULL;
+char **allResourceNames = NULL;
int selectedLanguage = 0;
int languageNum = -1;
@@ -585,7 +585,7 @@ void sludgeDisplay() {
}
void pauseFunction(loadedFunction *fun) {
- loadedFunction * * huntAndDestroy = &allRunningFunctions;
+ loadedFunction **huntAndDestroy = &allRunningFunctions;
while (*huntAndDestroy) {
if (fun == *huntAndDestroy) {
(*huntAndDestroy) = (*huntAndDestroy)->next;