diff options
| author | Oliver Kiehl | 2003-04-27 22:23:10 +0000 | 
|---|---|---|
| committer | Oliver Kiehl | 2003-04-27 22:23:10 +0000 | 
| commit | f14b0253f80226703883f35b09714829067fb834 (patch) | |
| tree | d09be725d39596478b5f95d63099836b01b717ab | |
| parent | 03adc716653371a6755c687ee2d76238fd5428a0 (diff) | |
| download | scummvm-rg350-f14b0253f80226703883f35b09714829067fb834.tar.gz scummvm-rg350-f14b0253f80226703883f35b09714829067fb834.tar.bz2 scummvm-rg350-f14b0253f80226703883f35b09714829067fb834.zip | |
oops
svn-id: r7169
| -rw-r--r-- | sky/logic.cpp | 3 | ||||
| -rw-r--r-- | sky/sky.cpp | 1 | 
2 files changed, 1 insertions, 3 deletions
| diff --git a/sky/logic.cpp b/sky/logic.cpp index 30e03f18a5..22b95397a3 100644 --- a/sky/logic.cpp +++ b/sky/logic.cpp @@ -62,9 +62,6 @@ SkyLogic::SkyLogic(SkyDisk *skyDisk, SkyGrid *skyGrid) {  void SkyLogic::engine() {  	Compact *compact2 = SkyState::fetchCompact(141); // logic list -	printf("XXXXXXX: loading grids\n"); -	_skyGrid->loadGrids(); -  	while (compact2->logic) { // 0 means end of list  		if (compact2->logic == 0xffff) {  			// Change logic data address diff --git a/sky/sky.cpp b/sky/sky.cpp index d6e3719bd8..de63dbab26 100644 --- a/sky/sky.cpp +++ b/sky/sky.cpp @@ -92,6 +92,7 @@ void SkyState::go() {  	if (!isDemo(_gameVersion) || isCDVersion(_gameVersion))  		intro(); +	_grid->loadGrids();  	while (1) {  		delay(100);  		_skyLogic->engine(); | 
