aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/detection.cpp
diff options
context:
space:
mode:
authorMax Horn2006-12-19 23:57:04 +0000
committerMax Horn2006-12-19 23:57:04 +0000
commit559f2b62ebfa57ce316825aee2da4664e244877d (patch)
tree7683e633467ca049117b8fc2f9ba9866457c261d /engines/cine/detection.cpp
parent07c6fa980f90946baa779716da2664d231176808 (diff)
downloadscummvm-rg350-559f2b62ebfa57ce316825aee2da4664e244877d.tar.gz
scummvm-rg350-559f2b62ebfa57ce316825aee2da4664e244877d.tar.bz2
scummvm-rg350-559f2b62ebfa57ce316825aee2da4664e244877d.zip
Renamed real_ADVANCED_DETECTOR_DETECT_GAMES_FUNCTION to ADVANCED_DETECTOR_DETECT_GAMES_FUNCTION, and real_ADVANCED_DETECTOR_DETECT_INIT_GAME to ADVANCED_DETECTOR_DETECT_INIT_GAME
svn-id: r24896
Diffstat (limited to 'engines/cine/detection.cpp')
-rw-r--r--engines/cine/detection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/cine/detection.cpp b/engines/cine/detection.cpp
index bfcc39fd29..10c9ffbac7 100644
--- a/engines/cine/detection.cpp
+++ b/engines/cine/detection.cpp
@@ -574,7 +574,7 @@ static const CINEGameDescription gameDescriptions[] = {
};
bool CineEngine::initGame() {
- int i = Common::real_ADVANCED_DETECTOR_DETECT_INIT_GAME(
+ int i = Common::ADVANCED_DETECTOR_DETECT_INIT_GAME(
(const byte *)gameDescriptions,
sizeof(CINEGameDescription),
FILE_MD5_BYTES,
@@ -585,7 +585,7 @@ bool CineEngine::initGame() {
}
DetectedGameList GAME_detectGames(const FSList &fslist) {
- return real_ADVANCED_DETECTOR_DETECT_GAMES_FUNCTION(
+ return Common::ADVANCED_DETECTOR_DETECT_GAMES_FUNCTION(
fslist,
(const byte *)gameDescriptions,
sizeof(CINEGameDescription),