diff options
| author | Filippos Karapetis | 2010-06-18 01:29:07 +0000 | 
|---|---|---|
| committer | Filippos Karapetis | 2010-06-18 01:29:07 +0000 | 
| commit | 7a22e491e39a5e15cf17168c2fde1368eea2d96b (patch) | |
| tree | 375bbd2901bff8dc8883369a27b46b7219d6547d | |
| parent | 30ea5f3ad2c45702f15e0941829fe002a4d22711 (diff) | |
| download | scummvm-rg350-7a22e491e39a5e15cf17168c2fde1368eea2d96b.tar.gz scummvm-rg350-7a22e491e39a5e15cf17168c2fde1368eea2d96b.tar.bz2 scummvm-rg350-7a22e491e39a5e15cf17168c2fde1368eea2d96b.zip  | |
Marked the KQ1 demo workaround as a workaround
svn-id: r49985
| -rw-r--r-- | engines/sci/engine/seg_manager.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sci/engine/seg_manager.cpp b/engines/sci/engine/seg_manager.cpp index 5c49855367..f19c03d5a8 100644 --- a/engines/sci/engine/seg_manager.cpp +++ b/engines/sci/engine/seg_manager.cpp @@ -532,7 +532,7 @@ Node *SegManager::lookupNode(reg_t addr) {  	if (type != SEG_TYPE_NODES) {  		if (g_sci->getGameId() == "kq1sci") { -			// The demo of KQ1 is trying to use an invalid memory reference as a list node +			// WORKAROUND: The demo of KQ1 is trying to use an invalid memory reference as a list node  			warning("Attempt to use non-node %04x:%04x (type %d) as list node", PRINT_REG(addr), type);  			return NULL;  		}  | 
