aboutsummaryrefslogtreecommitdiff
path: root/engines/bladerunner/script/script.h
diff options
context:
space:
mode:
authorPeter Kohaut2016-10-06 00:59:11 +0200
committerPeter Kohaut2016-10-06 00:59:11 +0200
commite0efee2eba7328914741340c2330056be8f27205 (patch)
tree5c5d9e370f8385cd9e330f27eba5e5a2d6b0a4a1 /engines/bladerunner/script/script.h
parent5d1e1131dc48f65de2f7c00bef3989df8d0d809f (diff)
downloadscummvm-rg350-e0efee2eba7328914741340c2330056be8f27205.tar.gz
scummvm-rg350-e0efee2eba7328914741340c2330056be8f27205.tar.bz2
scummvm-rg350-e0efee2eba7328914741340c2330056be8f27205.zip
BLADERUNNER: added suspects db & fixed crimes db
Diffstat (limited to 'engines/bladerunner/script/script.h')
-rw-r--r--engines/bladerunner/script/script.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/engines/bladerunner/script/script.h b/engines/bladerunner/script/script.h
index fb38fdaf91..5966b67868 100644
--- a/engines/bladerunner/script/script.h
+++ b/engines/bladerunner/script/script.h
@@ -213,16 +213,16 @@ protected:
void Police_Maze_Set_Pause_State(int a1);
void CDB_Set_Crime(int crimeId, int value);
void CDB_Set_Clue_Asset_Type(int assetId, int type);
- void SDB_Set_Actor(int actorId, int a2);
- void SDB_Add_Photo_Clue(int actorId, int a2, int a3);
- void SDB_Set_Name(int actorId);
- void SDB_Set_Sex(int actorId, int a2);
- void SDB_Add_Identity_Clue(int actorId, int a2);
- void SDB_Add_MO_Clue(int actorId, int a2);
- void SDB_Add_Whereabouts_Clue(int actorId, int a2);
- void SDB_Add_Replicant_Clue(int actorId, int a2);
- void SDB_Add_Non_Replicant_Clue(int actorId, int a2);
- void SDB_Add_Other_Clue(int actorId, int a2);
+ void SDB_Set_Actor(int suspectId, int actorId);
+ bool SDB_Add_Photo_Clue(int suspectId, int a2, int a3);
+ void SDB_Set_Name(int suspectId);
+ void SDB_Set_Sex(int suspectId, int sex);
+ bool SDB_Add_Identity_Clue(int suspectId, int clueId);
+ bool SDB_Add_MO_Clue(int suspectId, int clueId);
+ bool SDB_Add_Whereabouts_Clue(int suspectId, int clueId);
+ bool SDB_Add_Replicant_Clue(int suspectId, int clueId);
+ bool SDB_Add_Non_Replicant_Clue(int suspectId, int clueId);
+ bool SDB_Add_Other_Clue(int suspectId, int clueId);
void Spinner_Set_Selectable_Destination_Flag(int a1, int a2);
// Spinner_Query_Selectable_Destination_Flag
int Spinner_Interface_Choose_Dest(int a1, int a2);